@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.form-horizontal {
    display: block;
    width: 50%;
    /* margin: auto auto; */
}

.divider-vertical {
    width: 2px;
    background-color: #003d5c;
    margin: 0 20px;
    min-height: 400px;
    max-height: 80%;
}

.login-form {
    flex: 1;
    padding-left: 60px;
}

.welcome-text {
    margin-top: 0;
}

.padding-y-10 {
    padding: 10px 0;
}

.welcome-text-container {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}

.login-field-width {
    width: 100%;
}

/* Configure for different screen sizes */

/* Small devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 768px) {
    .container {
        max-width: 700px!important;
    }
}


/* Super small devices */
@media (max-width: 450px) {
    #submit {
        margin-bottom: 50px;
    }
}

/* For Super small screen */
/* make element displayed vertically */
@media (max-width: 576px) {
    .well {
        flex-direction: column;
        padding-top:0px !important;
    }
    /* make the divide line horizontal */
    .divider-vertical {
        width: 100% !important;
        height: 2px;
        min-height: unset !important;
        max-height: unset !important;
        margin: 10px 0px;
    }
    .form-horizontal {
        width: 100%;
        padding-left: 0px !important;
        margin-top:10px;
    }
    .text-center-sm {
        text-align: center;
    }
    .content {
        /* min-height: calc(100vh - 60px); */
        min-height: 100vh;
        margin: 0;
        /* 80px header + 40px footer = 120px  */
    }
    .login-btn .justify-content-start {
        justify-content: center!important;
    }
    .welcome-text-container div {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .login-field-width {
        width: 75%;
    }
}

/* 2FA Page */
/* change the font family of 2FA page */
#TwoFAForm label {
    font-family: 'Inter', Arial, sans-serif !important;
}
