﻿
body::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: url('../images/login-bg.jpg') no-repeat;
    background-size: cover;
    filter: blur(5px); 
    z-index: -1; 
}

#auth {
    height: 100vh;
    overflow-x: hidden;
}

#auth #auth-right{
border: 1px solid #ababab;
    box-shadow: 0px 0px 10px 0px #adabab;
}

#auth #auth-right .auth-title {
    font-size: 3.5rem;

}

#auth #auth-right .auth-subtitle {
    font-size: 1.3rem;
    color: black;
    text-align:center;
}


@media screen and (max-width:767px) {
    #auth #auth-right {
        border: none;
        box-shadow: unset;
    }
}

