/*- GENERAL -*/
.container {
    max-width: 1550px;
}
.hidden {
    visibility: hidden;
}
.no-underline {
    text-decoration: none !important;
    border-bottom: none !important;
}
.login-title {
    margin-top: 12%;
}
.login-title h1 {
    font-size: 3em;
    font-style: italic;
    letter-spacing: 2px;
    text-align: center;
}
.login-fieldset legend {
    text-align: center;
    font-size: 1rem;
}
.connexion {
    background-color: #595E5F;
    border: 1px solid #AFB1B2;
    border-radius: 25px;
    color: #ffffff!important;
    margin: 5px auto;
    transition: 0.2s;
    white-space: nowrap;
    width: 200px!important;
}
.sso-bloc {
    height: 55px;
}
.sso-btn {
    padding: 0!important;
    margin: auto;
    width: 200px!important;
}
.connexion:hover {
    background-color: #b8de78;
    border: 1px solid #e1fbb3;
    transition: 0.2s;
}
.button-login {
    float: right;
}
#show-identitate {
    text-align: center;
}
.display-login {
    display: none;
}
.chevron-toggle {
    transform: rotate(90deg);
}
#username {
    width: 200px;
    margin: 0;
    border: 1px solid #AFB1B2;
    border-radius: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}
#sfrpassword {
    width: 180px;
    margin: 0;
    border: 1px solid #AFB1B2;
    border-radius: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}
#show-password {
    width: 20px;
    padding-top: 6px;
    cursor: pointer;

}
#show-identitate label {
    margin-bottom: 8px;
    margin-top: 8px;
}
#identitate {
    background-color: #595E5F;
    border: 1px solid #AFB1B2;
    border-radius: 25px;
    color: #ffffff!important;
    margin: 5px auto;
    transition: 0.2s;
    white-space: nowrap;
    width: 200px;
    padding: 5px;
}
#identitate:hover {
    background-color: #b8de78;
    border: 1px solid #e1fbb3;
    transition: 0.2s;
}
#loading {
    animation: 2s rotate infinite linear;
}
.red {
    color: #ff0000;
}
@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}