﻿.input-validation-error {
    border: 1px solid #AC004A !important;
}

.field-validation-error, .field-validation-error span {
    color: #AC004A !important;
    display: none;
    font-size: 14px;
}

.field-validation-error {
    display: block;
}
.validation-summary-errors > ul {
    color: #AC004A;
    font-weight: bold;
    list-style: none outside none;
    text-align: center;
    font-weight: normal;
    font-size: 22px;
}

.sucessmsg {
    background: none repeat scroll 0 0 #57D740;
    border-radius: 5px;
    color: #FFFFFF;
    opacity: 1;
    min-height: 30px;
    margin-bottom: 5px;
    text-align: center;
    width: 50%;
}

.errormsg {
    background: none repeat scroll 0 0 #AC004A;
    border-radius: 5px;
    color: #FFFFFF;
    opacity: 1;
    min-height: 30px;
    margin-bottom: 5px;
    text-align: center;
    width: 50%;
}

input[type='text'].error {
    border: 1px solid #AC004A !important;
}

.error {
    color: #AC004A;
}

.field-validation-error {
    display: inline-block !important;
    background-color: #CE5454;
    padding: 10px;
    color: #fff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
}

    .field-validation-error:after {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #CE5454;
        position: absolute;
        left: 15px;
        top: -8px;
        content: '';
    }

    .field-validation-error, .field-validation-error span {
        color: #fff !important;
        display: none;
        font-size: 14px;
    }

input.valid {
    background: url("/images/ico_validation.png") no-repeat scroll right -53px #FFFFFF;
    border: 1px solid #ddd !important;
    font-size: 16px;
}

input.error,
input.input-validation-error {
    border: 1px solid #AC004A !important;
    background: url("/images/ico_validation.png") no-repeat scroll right 12px #FFFFFF;
    font-size: 16px;
}

label.error {
    display: inline-block;
    background-color: #e64444;
    padding: 10px;
    color: #ffffff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
    font-weight: normal;
}

    label.error:after {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;        
        border-bottom: 10px solid #e64444;
        position: absolute;
        left: 15px;
        top: -8px;
        content: '';
    }

.login_error {
    color: #AC004A;
    font-size: 16px;
    text-align: center;
    padding-bottom: 10px;
}

.login_error_text {
    font-size: 16px;
}

.login_error_box strong {
    font-size: 16px;
}

.login_logo {
    width: 200px !important;
    height: auto;
}

.hidden {
    display: none;
}

span.error {
    display: inline-block;
    background-color: #e64444;
    padding: 10px;
    color: #ffffff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
    font-weight: normal;
}

    span.error:after {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;       
        border-bottom: 10px solid #e64444;
        position: absolute;
        left: 15px;
        top: -8px;
        content: '';
    }

.field-validation-error1 {
    color: red;
}

span.error1 {
    display: inline-block;
    background-color: #ce5454;
    padding: 10px;
    color: #ffffff !important;
    border-radius: 7px;
    margin-top: 15px;
    position: relative;
    font-weight: normal;
}

    span.error1:after {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;        
        border-bottom: 10px solid #ce5454;
        position: absolute;
        left: 15px;
        top: -8px;
        content: '';
    }

.validation-summary-errors ul > li {
    color: #CE5454;
    font-size: 18px;
    font-weight: 500;
}
.captcha {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .captcha .g-recaptcha {
        display: flex;
        justify-content: center;
    }

    .captcha .caperror {
        text-align: center;
        width: 100%;
    }

.validation-error {
    display: block;
    color: #fff;
    background: #ed4747;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    width: fit-content;
    position: relative;
}

    .validation-error::before {
        content: "";
        position: absolute;
        top: -7px;
        left: 14px;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #ed4747;
    }

.input-validation-error {
    border-color: #ed4747 !important;
}