/* ============== */
/* LOGIN */
/* ============== */
@-webkit-keyframes tracking-in-expand {0% {letter-spacing: -0.5em;opacity: 0;}40% {opacity: 0.6;}100% {opacity: 1;}}

@keyframes tracking-in-expand {0% {letter-spacing: -0.5em;opacity: 0;}40% {opacity: 0.6;}100% {opacity: 1;}}

@-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}

.fade-in-an{-webkit-animation:fade-in 1.2s cubic-bezier(.39,.575,.565,1.000) both;animation:fade-in 1.2s cubic-bezier(.39,.575,.565,1.000) both}

.app-container-login{
    height: 100vh;
    background-color: white;
    padding: 0;
}
.app-container-login-form{
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    transform: translate(0, -50%);
}
.app-container-login-title{
    font-size: 1.2rem;
    text-align: center;
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    margin-bottom: 3rem;
}
.app-container-login-title img{
    width: 35px;
}
.app-container-image{
    height: 100vh;
    background: linear-gradient(to right bottom, var(--application-primary-color), #464545);
}
.app-container-image-content{
    height: 100%;
    width: 100%;
    background-image: url('/public/image/bg-login3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.app-container-image-content-text{
    color: white;
    position: absolute;
    bottom: 25px;
    left: 50%;
    font-size: 1.1rem;
    font-weight: 300;
    transform: translate(-50%, 0);
}