/* Login Form */
.left-bloc {
    max-width: 20%!important;
}
.login-bloc {
    border-left: 9px solid #ffa246;
    border-right: 9px solid #ffa246;
    padding-top: 20px;
}
#showOrNot {
    cursor: pointer;

}
#showOrNot:hover {
    text-decoration: underline;
    color: #0056b3;
}
#bloc-showOrNot, #recovery fieldset {
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 20px;
    transition: height 1s ease-in-out;
}
#show-password {
    cursor: pointer;
}
.sso-btn {
    height: 4rem;
    width: 100%;
}
#recovery legend {
    width: auto !important;
    font-size: 1.2rem;
    padding: 5px;
    margin: 0;
}

a {
    color: #121212!important;
    text-decoration: none!important;
}
a:hover {
    color: #ffa246!important;
}
.form-group {
    margin-bottom: 1rem;
}

.display-login {
    display: none;
}
.display, .hidden {
    display: none!important;
}
#loading {
    animation: 2s rotate infinite linear;
}
.red {
    color: #ff0000;
}

@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}