/** LOGIN FORM BEGINNING **/
.login_entity_logo img {
    width: 100%;
}
.login_container,
.password_reset_container,
.username_recovery_container {
    height: calc(100vh + 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4rem;
}
.login_content,
.password_reset_content,
.username_recovery_content {
    width: 420px;
    background-color: #ffffff;
    margin: 1rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    z-index: 1;
}
.container_blur {
    position: absolute;
    inset: 0;
    background-image: url("/img/common/elephant_vert_hover.png");
    background-repeat: no-repeat;
    background-position: 50.3% bottom;
    background-size: 420px;
    opacity: .1;
    z-index: 0;
    overflow: hidden;
}
/* Animation 3D du container_blur elephant (image) */
.container_blur::after {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}
.login_content h2 {
    margin: 0;
}
.login_content h3,
.password_reset_content h3,
.username_recovery_content h3 {
    font-size: 2rem;
    text-transform: uppercase;
}
.login_content a:hover,
.password_reset_content a:hover,
.username_recovery_content a:hover {
    opacity: .6;
    transition: .1s;
}
.login_entity_logo {
    margin-bottom: 1.8rem;
    text-align: center;
}
.login_entity_logo img {
    width: auto;
    max-width: 290px;
    max-height: 100px;
}
.login_entity_color_idra {
    color: #F57F2B !important;
}
.login_entity_color_ibl {
    color: #229D89 !important;
}
.login_entity_bg_color_idra {
    background-color: #F57F2B !important;
    border-color: #F57F2B !important;
}
.login_entity_bg_color_ibl {
    background-color: #229D89 !important;
    border-color: #229D89 !important;
}
.password_recovery {
    margin-bottom: 2rem;
}
@media (max-height: 980px) {
    .container_blur {
        background-size: 200px;
    }
}
@media (max-width: 700px) {
    .container_blur {
        background-size: 200px;
    }
}
@media (max-height: 640px) {
    .container_blur {
        background-size: 140px;
    }
}
/** LOGIN FORM END **/