.container-fluid {
    width: 100vw;
    height: 100vh;
}

.loginBox {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    background-color: white;
    border-radius: 15px;
    height: 60vh;

}

.btnLogin {
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.logon {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;

}

.leftLoginTop div b {
    font-weight: 700;
    font-size: 45px;
    color: #4e73df;
}

.inputLogin {
    width: 100%;
    min-width: 0px;
    outline: 2px solid transparent;
    outline-offset: 2px;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    font-weight: 400;
    border-radius: 10px;
    height: 50px;
    border: none;
    border-color: inherit;
    background-color: #eee !important;

    font-size: 16px;
}

.minTextHelper {
    color: gray;
    font-size: smaller;
}

.passwordContainer,
.oldPasswordContainer,
.newPasswordContainer {
    position: relative;
}

.showPassword,
.showOldPassword,
.showNewPassword {
    position: absolute;
    right: 5px;
    top: 0;
    font-size: small;
    cursor: pointer;
    height: 100%;
    display: flex;
}

.showOldPassword img,
.showNewPassword img {
    transition: all 1s;
}

/* .hidePasswordIcon {
    margin-right: 50px;
    opacity: 0;
    display: none;
} */

.forgotPassBtn {
    font-size: small;
    font-weight: bolder;
    margin-left: 10px;
    padding: 5px;
    color: #4e73df;
    cursor: pointer;

}

.hidden {
    display: none !important;
}

.invalidFields {
    border: 1px solid red;
}