* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    margin: 0 !important;
}

.login-page {
    display: flex;
    height: 100%;
}

.login-left {
    max-width: 50%;
    min-width: 50%;
}

    .login-left img {
        max-width: 100%;
        height: auto;
        /*        max-height: 100%;
*/ object-fit: contain;
    }

.login-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10vw;
    width: 100%;
}

.login-right-title {
    font-size: 48px;
}

.form-group-input-container {
    /*width: 100%;*/
    max-width: 25vw;
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    border-radius: var(--px-8);
    padding: var(--px-12) 0;
    grid-template-rows: min-content;
    grid-template-columns: repeat(12, 1fr);
}

.form-group-input-email {
    margin-top: 40px;
}

.form-group-input-label {
    font-size: 20px;
}

.form-group-input {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

#forgot-password {
    color: inherit;
    text-decoration: none;
}

.confirm-password-btn {
    margin-top: 32px;
    background: #E5E5E5;
    border: 0.5px solid;
    font-size: 20px;
    height: 44px;
    border-radius: var(--px-12);
}

    .confirm-password-btn:hover {
        background: var(--bs-main-500);
        color: white;
        transition: color 0.2s ease;
    }



.footer {
    display: flex;
    align-items: center;
    color: #555;
    padding: 10px 0;
    margin-top: 28px;
    width: 25vw;
}

    .footer p {
        margin: 0;
    }

.user-icon {
    font-size: 18px;
    color: #111;
}



/****************POPUP + TOAST***************/

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .popup-close:hover {
        color: #ff4d4d;
    }


.popup {
    position: fixed;
    top: 10vh;
    left: 50%;
    transform: translate(-50%);
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    width: 500px;
    height: fit-content;
    text-align: center;
}

    .popup input {
        width: 100%;
        padding: 12px;
        margin: 12px 0 18px;
        border-radius: 12px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
    }

    .popup button {
        padding: 10px 20px;
        background-color: var(--bs-main);
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }



.popup-btn-container {
    display: flex;
    justify-content: flex-end;
}

#otpPopup h2 {
    padding: 8px 0;
}

#otpPopup p {
    padding: 5px 0;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 16px auto;
    width: 80%;
}

.otp-box {
    width: 40px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.otp-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    height: 36px;
}

#resendOtpBtn {
    display: none;
    margin-left: 4px;
    background-color: transparent;
    border: none;
    color: #00bcd4;
    cursor: pointer;
    padding: 0;
}

    #resendOtpBtn.active {
        display: inline;
    }

.verify-otp-btn {
    padding: 10px 16px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

    .verify-otp-btn:disabled {
        background-color: #aaa;
        cursor: not-allowed;
    }




.change-password-popup {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 24px;
    z-index: 100;
    font-family: 'Segoe UI', sans-serif;
}

.change-password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .change-password-header h2 {
        font-size: 20px;
        margin: 0;
    }

.change-password-close {
    font-size: 36px;
    cursor: pointer;
}

.change-password-body {
    margin-top: 30px;
}

    .change-password-body label {
        display: block;
        margin-bottom: 12px;
        font-weight: 600;
        margin-top: 12px;
    }

.change-password-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin-bottom: 8px;
    width: -webkit-fill-available;
    outline: none;
}

.change-password-helper {
    font-size: 12px;
    color: #555;
    margin-top: -4px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.change-password-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.change-password-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

    .change-password-btn.cancel {
        background: white;
        border: 1px solid #ccc;
        margin-right: 8px;
    }

    .change-password-btn.confirm {
        background-color: var(--bs-main-600);
        color: white;
    }



.toast {
    position: fixed;
    top: 40px;
    right: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
    padding: 16px 20px;
    min-width: 15%;
    font-family: sans-serif;
}

    .toast.success {
        border-top: 6px solid #5fd27f;
    }

    .toast.error {
        border-top: 6px solid #ff4d4f;
    }

.toast-icon {
    font-size: 18px;
    margin-right: 10px;
}

.toast.success .toast-icon {
    color: #5fd27f;
}

.toast.error .toast-icon {
    color: #ff4d4f;
}

.toast.success .toast-message {
    color: #5fd27f;
}

.toast.error .toast-message {
    color: #ff4d4f;
}

.toast-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-toast {
    cursor: pointer;
    font-size: 18px;
}
