

/* Styles for basic forms
-----------------------------------------------------------*/

fieldset 
{
    border:1px solid #ddd;
    padding:0 1.4em 1.4em 1.4em;
    margin:0 0 1.5em 0;
}

legend 
{
    font-size:1.2em;
    font-weight: bold;
}

textarea 
{
    min-height: 75px;
}

.editor-label 
{
    margin: 1em 0 0 0;
}

.editor-field 
{
    margin:0.5em 0 0 0;
}


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error
{
    color: #ff0000;
    padding:7px 11px 5px 7px;
     font-family:Consolas;
    
}

.field-validation-valid
{
    display: none;
}

.input-validation-error
{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors
{
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid
{
    display: none;
}

.blog-captcha
{
    margin: 8px 0 12px 0;
}

.blog-captcha-row
{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.blog-captcha .captcha-image
{
    display: block;
    border: 1px solid #ccc;
    background: #fff;
}

.blog-captcha .captcha-refresh
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    cursor: pointer;
    border: 1px solid #999;
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
    vertical-align: middle;
}

.blog-captcha .captcha-refresh:hover
{
    background: #e0e0e0;
    border-color: #555;
    color: #111;
}

.blog-captcha .captcha-refresh-icon
{
    display: block;
}

.blog-captcha .captcha-answer-row
{
    margin-bottom: 4px;
}

.blog-captcha .captcha-answer
{
    display: block;
    width: 150px;
    height: 28px;
    padding: 4px 6px;
    box-sizing: border-box;
}

.blog-captcha .captcha-answer.input-validation-error
{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}
