* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lightblue: #1492e6;
    --gray: #707070;
    --blue: #043D6C;
}

.login__header {
    margin-bottom: 64px;
    font-size: 25px;
    font-weight: 600;
    color: var(--blue);
}

.login__password_container {
    position: relative;
}

#login__eye, #reset__eye, #reset__confirm__eye {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 10px;
}

.login__form > input,select, .reset__form > input, .login__password_container > input {
    height: 36px;
    border: 1px var(--gray) solid;
    outline: none;
    color: var(--gray);
    padding: 8px;
    font-size: 14px;
}

.login__form > input:focus-visible,select:focus-visible, .reset__form > input:focus-visible,
.login__password_container > input:focus-visible {
    border: 2px var(--blue) solid;
    outline: none;
}

.login__form > button, .reset__form > button {
    height: 46px;
    outline: none;
    /*border: 1px var(--gray) solid;*/
    font-size: 18px;
    background-color: #fff;
    /*color: var(--gray);*/
}

.login__form > a, .reset__form > a {
    color: var(--lightblue);
    text-decoration: none;
    font-size: 14px;
}

.button__enable {
    border: 1px var(--lightblue) solid !important;
    color: #fff !important;
    background-color: var(--lightblue) !important;
}

.login__text {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 0px !important;
}

.form-check-input[type=checkbox] {
    border-radius: 0px !important;
}

.form-check-input:checked {
    background-color: var(--gray);
    border-color: var(--gray);
}

.text__error, .text__success {
    width: 416px;
}

.reset__instruction {
    font-size: 14px;
    color: var(--lightblue);
}

.footer__text {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

.footer__text a {
    text-decoration: none;
    color: var(--gray);
}


/** Large devices (desktops, 992px and up) **/
@media (min-width: 992px) {
    .login__form, .reset__form, .footer {
        width: 416px;
    }

    .login {
        padding-top: 150px;
    }

    .forgot {
        padding-top: 180px;
    }

    .text__error {
        width: 416px !important;
    }
}

/** Medium devices (tablets, less than 992px)  **/
@media (max-width: 991.98px) {
    .login__form, .reset__form {
        width: 90vw;
    }

    .login {
        padding-top: 10vh;
    }

    .forgot {
        padding-top: 10vh;
    }

    .footer__container {
        position: unset;
    }

    .global__container {
        overflow: scroll !important;
        height: 100vh !important;
    }
}
