header{
	top: 5px;
}

/* ------------------------------------------------------ */
.login-page, .register-page, .fg-password-page, .otp-page  {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(var(--black), var(--theme));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-page-common h3 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 24px;
}

.login-page-common img {
    width: 60px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}


.login-container, .register-container, .fg-password-container, .otp-container {
    background: #ffffff;
    padding: 10px 30px;
    border-radius: 30px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    width: 40%;
    min-width: 300px;
    backdrop-filter: blur(50px);
	margin-top: 6%;
	min-height: 400px;
    max-height: 440px;
}

.input-box {
    border-bottom: 1px solid #ccc;
    display: flex;
    gap: 5px;
    align-items: center;
}

.input-box i {
    color: #555;
}

.input-box input {
    border: none;
    background-color: transparent;
    color: #555;
    box-shadow: none !important;
    font-size: 20px;
}


.input-box input::placeholder {
    color: #555;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* ***************************login style ends************************* */



.log-body h3 {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.login-label {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

.login-page .click .btn {
    background: var(--theme);
    width: 100%;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 5px;

}



.fg-btn {
    background-color: transparent !important;
    box-shadow: none;
    border: navajowhite;
    color: var(--theme);
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

.sign-up-sec {
    margin-top: 5px;
}

.sign-btn {
    background: var(--theme);
    color: var(--white);
    font-size: 16px;
    width: 50%;
}


.sign-btn:hover {
    background-color: var(--black);
}

.fg-pass-sec button {
    text-transform: capitalize;
}

.hyper-logo img {
    width: 10%;
}

@media (max-width: 992px) {
    .login-container {
        text-align: center;
    }

    .hyper-logo img {
        width: 20%;
    }

    .login-label {
        text-align: left;
    }

    .left-img {
        display: none;
    }
}

@media (max-width: 424px) {
    .login-container {
        padding: 10px 20px;
    }
}


/* *************************************login style ends************************************* */


/* ***************************register style ends************************* */


.register-label {
    color: #000;
    font-weight: 400;
    font-size: 16px;
}


.register-btn {
    background-color: var(--theme);
    color: var(--white);

}


.sign-up-sec {
    margin-top: 5px;
}

.open-login-window {
    background: var(--theme);
    color: var(--white);
}


.acnt-tx {
    font-size: 15px;
}

@media (max-width: 992px) {
    .register-container {
        text-align: center;
    }

    .hyper-logo img {
        width: 20%;
    }

    .register-label {
        text-align: left;
    }

    .left-img {
        display: none;
    }
}

@media (max-width: 424px) {
    .register-container {
        padding: 10px 20px;
    }
}


/* *************************************register style ends************************************* */


/* ***************************fg-password style ends************************* */

.fg-password-btn {
    background-color: var(--theme);
    color: var(--white);
}

.fg-password-btn:hover {
    background-color: var(--black);
    color: #fff;
}

.sign-up-sec {
    margin-top: 5px;
}

.back-log button {
    color: #fff;
    text-transform: capitalize;
}


@media(max-width:424px){
    .fg-password-container{
        padding: 10px 20px;
    }
}


/* *************************************fg-password style ends************************************* */

/* ***************************otp style ends************************* */

.otp-btn {
    background-color: var(--theme);
    color: var(--white);

}


.sign-up-sec {
    margin-top: 5px;
}

.back-log button {
    color: #fff;
    text-transform: capitalize;
}

.hyper-logo img {
    width: 10%;
}
.otp-page .eye-btn{
    border: none;
    outline: none;
}
@media(max-width:424px){
    .otp-container{
        padding: 10px 20px;
    }
}

/* *************************************otp style ends************************************* */

/*********************************************************************

   CSS FOR LOGIN PAGE 

  *********************************************************************/


.textbox-background-error {

    background: #fd5757;
}

.textbox-background-ok {

    background: transparent;
}

.dont-show-disable:disabled {
    opacity: 1;
    cursor: pointer;
    color: inherit;
    /* Or specify the exact color, e.g., color: #fff; */
    background-color: grey;
    /* Or specify the exact background color */
    border-color: inherit;
    /* Or specify the exact border color */
    box-shadow: none;
}

.error-message-container {
    position: relative;
    height: 50px !important;
    margin: 5px auto;
    text-align: center;
    border-radius: 5px;
}

.success-message {
    display: none;
    /* Initially hidden */
    background-color: #c6fac6;
    /* Light red background */
    color: #008b00;
    /* Dark red text */
    border: 2px solid #008b00;
    /* Bright red border */
    padding: 6px;
    position: fixed;
    /* Make the div float */
    top: 100px;
    /* Distance from the top of the screen */
    right: 10px;
    /* Distance from the right of the screen */
    font-weight: bold;
    /* Bold text */
    border-radius: 5px;
    z-index: 1100;
    /* Ensure it's on top of other elements */
    text-align: center;
    width: auto;
    min-width: 200px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: a subtle shadow */
    padding-right: 35px !important;
    padding-left: 25px !important;
}


.error-message {
    display: none;
    /* Initially hidden */
    background-color: #f8d7da;
    /* Light red background */
    color: #721c24;
    /* Dark red text */
    border: 2px solid #f5c6cb;
    /* Bright red border */
    padding: 6px;
    position: fixed;
    /* Make the div float */
    top: 100px;
    /* Distance from the top of the screen */
    right: 10px;
    /* Distance from the right of the screen */
    font-weight: bold;
    /* Bold text */
    border-radius: 5px;
    z-index: 1100;
    /* Ensure it's on top of other elements */
    text-align: center;
    width: auto;
    min-width: 200px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: a subtle shadow */
    padding-right: 35px !important;
    padding-left: 25px !important;
}

.close-button {
    position: absolute;
    top: 3px;
    right: 5px;
    background: none;
    border: none;
    font-weight: bold;
    color: #721c24;
    cursor: pointer;

}

.close-button:hover {
    color: #d9534f;
    /* Change close button color on hover */
}


/*********************************************************************

    CSS FOR LOGIN PAGE END

  *********************************************************************/