/* ================= FORGOT PASSWORD MODAL ================= */
#forgotPasswordModal .modal-dialog {
    width: 420px;
    max-width: 95%;
    margin: 30px auto;
}

#forgotPasswordModal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

/* ================= MOBILE FULLSCREEN ================= */
@media (max-width: 768px) {

    #forgotPasswordModal .modal-dialog {
        width: 100%;
        max-width: 100%;
        height: 100%;
        margin: 0;
    }

    #forgotPasswordModal .modal-content {
        height: 100vh;
        border-radius: 0;

        display: flex;
        flex-direction: column;
    }

    #forgotPasswordModalContent {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    #forgotPasswordModalContent .auth-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    #forgotPasswordModalContent .auth-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}