main {
    margin-top: 0;
}

/* ----- Auth Container Css Start ----- */
.auth-container {
    width: 450px;
    padding: 60px 0;
}

/* ----- Auth Container Css End ----- */

/* ----- Form Header Css Start ----- */
.form-header {
    margin-bottom: 48px;
}

.form-header .logo {
    width: 130px;
    height: 71px;
    margin-bottom: 32px;
}

.email-verification-logo {
    margin-top: 115px;
    margin-bottom: 37px;
}

.form-header .heading {
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff 5%, #8C6824 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header .text {
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--white);
}

/*.timer-text {*/
/*    font-weight: 400;*/
/*    font-size: 16px;*/
/*    line-height: normal;*/
/*    !*margin-top: 28px;*!*/
/*}*/

/* ----- Form Header Css End ----- */


/* ----- Form Footer Css Start ----- */

.form-footer {
    margin-top: 40px;
}

.form-footer .text {
    font-weight: 300;
    font-size: 14px;
    line-height:normal;
    color: var(--white);
}

.form-footer .text.color-gray {
    color: #747474;
    font-weight: 400;
}

.form-footer .text .link {
    font-weight: 400;
    color: var(--mustard);
    text-decoration: none;
}

.form-footer .forget-pass {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #747474;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    margin-top: 60px;
    display: inline-block;
}

.form-footer .forget-pass:hover {
    color: white;
}

.form-footer .form-check-input {
    border-color: #51526C;
    background-color: transparent;
}

.form-footer .form-check-input:focus {
    border-color: #51526C;
    box-shadow: none;
}

/* ----- Form Footer Css End ----- */



/* ----- Auth Video Css Start ----- */
.auth-video {
    overflow: hidden;
}

.auth-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Auth Video Css End ----- */

/* ----- Captcha Css Start ----- */
.captcha-text {
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: var(--white);
}
#captcha .captcha-code-image{
    border-radius: 10px;
    overflow: hidden;
    height: 47px;
    width: 100%;
}
/* ----- Captcha Css End ----- */

.auth-header-footer{
    display: none;
}
/* ------------------------------------------ Responsive CSS ------------------------------------------ */

@media only screen and (max-width: 992px) {

    main {
        margin-top: 75px;
    }
    
    /* ----- Auth Container Css Start ----- */
    .auth-container {
        width: 100%;
        padding: 60px 16px;
    }

    /* ----- Auth Container Css End ----- */
    /* ----- Form Header Css Start ----- */
    .form-header {
        margin-bottom: 40px;
    }

    .form-header .logo {
        width: 120px;
        height: 65px;
        margin-bottom: 40px;
    }

    .form-header .heading {
        margin-bottom: 8px;
    }

    .email-verification-logo {
        margin-top: 37px;
        margin-bottom: 37px;
        height: 60px;
    }

    /* ----- Form Header Css End ----- */


    /* ----- Form Footer Css Start ----- */

    .form-footer {
        margin-top: 24px;
    }

    .form-footer .forget-pass {
        margin-top: 55px;
    }

    /* ----- Form Footer Css End ----- */


    /* ----- Captcha Css Start ----- */
    #captcha .captcha-code-image{
        width: auto;
        max-width: 100%;
    }
    /* ----- Captcha Css End ----- */
    .h-100vh {
        height: auto;
    }
}

