body{background-color:#fff}#auth{height:100vh;overflow-x:hidden}
#auth #auth-right{height:100%;background:url(../../images/bg/4853433.jpg),linear-gradient(90deg,#2d499d,#3f5491)}
#auth #auth-left{padding:5rem 8rem}
#auth #auth-left .auth-title{font-size:2rem;margin-bottom:1rem}
#auth #auth-left .auth-subtitle{font-size:1.7rem;line-height:2.5rem;color:#a8aebb}
#auth #auth-left .auth-logo{align-items: center; margin-bottom:2rem}
#auth #auth-left .auth-logo img{height:10rem}@media screen and (max-width:767px){#auth #auth-left{padding:2rem}}
#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

/* Error message */
#error-message-container {
    background-color: #FFEBEE;
    padding: 10px;
    border-radius: 5px;
    display: none;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}

#error-message-container i {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #B71C1C;
    line-height: normal;
}

#error-message-container #error-message {
    font-size: 18px;
    color: #B71C1C;
    margin: 0 0 0 15px !important;
}

/* Loading overlay */
#loading-overlay {
    width: 100vw;
    height: 100vh;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}
#loading-overlay.active {
    display: flex;
}
#loading-overlay .container {
    width: 180px;
    height: 180px;
}
#loading-overlay .container .box {
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: transparent;
    display: flex;
    justify-content: center;
    transform: rotate(90deg);
    animation: loading_animation 3.5s infinite linear;
}
#loading-overlay .container .box .dot {
    width: 15px;
    height: 15px;
    border-radius: 8px;
    background-color: white;
}
#loading-overlay .container .box:nth-child(1) {
    animation-delay: 0.15s;
}
#loading-overlay .container .box:nth-child(2) {
    animation-delay: 0.3s;
}
#loading-overlay .container .box:nth-child(3) {
    animation-delay: 0.45s;
}
#loading-overlay .container .box:nth-child(4) {
    animation-delay: 0.6s;
}
#loading-overlay .container .box:nth-child(5) {
    animation-delay: 0.75s;
}
#loading-overlay .container .box:nth-child(6) {
    animation-delay: 0.9s;
}

@keyframes loading_animation {
    0% {
        transform: rotate(90deg);
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    20% {
        transform: rotate(330deg);
    }
    50% {
        transform: rotate(450deg);
    }
    70% {
        transform: rotate(690deg);
        opacity: 1;
    }
    100% {
        transform: rotate(810deg);
        opacity: 0;
    }
}
