.secure-contact-form {  }

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child{  }

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: 700;
    color:#555;
    font-size:16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color:#555;
    font-size: 14px;
    box-sizing:border-box;
    background-color:#fff;
}

.form-group textarea {
    height: 150px;
}

span.req-i{
    color: #d80f22;
}

.captcha-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    background:#eeeeee;
    flex-direction: row;
    padding:10px;
    border:1px solid #ccc;
    border-radius: 4px;
    box-sizing:border-box;
}

.comment-captcha-wrapper{
    margin: 20px 0;
    border:none;
    background-color:#dcdcdc;
}

.captcha-wrapper.comment-captcha-wrapper label{
    font-size: 14px;
    font-weight:700;
    margin-top:17px;
}

.captcha-wrapper label{
    margin:0;
    margin-top:15px;
}

.captcha-wrapper input{
    max-width: 240px;
    text-transform: uppercase;
}

.secure-contact-form .captcha-image {
    width:100%;
    max-width: 130px;
    height: auto;
    border: 0;
    padding:0;
    margin:0;
    vertical-align:bottom;
    border-radius: 0;
}

.secure-contact-form button[type="submit"] {
    padding: 10px 20px;
    background: #007cba;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight:500;
    box-sizing:border-box;
    transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.secure-contact-form button[type="submit"]:hover {
    background: #006799;
    color: #fff;
}

.secure-contact-form button[type="submit"]:active{
    background: #005177;
    color: #fff;
}

.secure-contact-form button[type="submit"]:disabled {
    background: #ccc;
    color: #333;
    cursor: not-allowed;
}

.form-message-success {
    margin-top: 20px;
    border-radius: 4px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px 15px;
    font-size: 14px;
}

.form-message-error {
    margin-top: 20px;
    border-radius: 4px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    font-size: 14px;
}

.form-ajax-load{
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    display: none;
}

.form-ajax-load span{
    display:inline-block;
    line-height:26px;
    margin-left: 10px;
}

.loader-container {
    display:inline-block;
}

.spinner {
    position:relative;
    top:7px;
    width: 22px;
    height: 22px;
    border: 3px solid #c2c2c2;
    border-top: 3px solid #006799;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#slideUpApply {
    transition: all 1s ease;
}

.form-slide-up-eff {
    transform: translateY(-400%);
    opacity: 0;
}

#char-counter{
    font-size: 13px;
    color: #777;
}

@media all and (max-width: 600px){
    .captcha-wrapper,
    .captcha-wrapper label,
    .captcha-wrapper img,
    .captcha-wrapper input{
        display:block;
    }
    
    .captcha-wrapper label, .captcha-wrapper.comment-captcha-wrapper label{
        margin-bottom: 5px;
        margin-top: 0;
    }

    .captcha-wrapper .captcha-image{
        margin-bottom: 10px;
    }

    .captcha-wrapper input{
        width:100%;
        max-width:100%;
    }
}