*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: iransans;
    outline: none;
    box-sizing: border-box;
}
@font-face {
    font-family: iransans;
    src: url("/fonts/iransans/IRANSansWeb.ttf");
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px 0;
}
.background{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
.background .left{
    background-image: url("../img/static/left-parallax.svg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: 100vh;
    width: 250px;
    opacity: 30%;
}
.background .right{
    background-image: url("../img/static/right-parallax.svg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: 100vh;
    width: 200px;
    opacity: 30%;
}
.auth{
    animation-duration: 1.5s;
    animation-delay: .2s;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    width: 100%;
    padding: 20px 0;
}
.title{
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}
.input{
    display: block;
    border-radius: 30px;
    padding: 15px 25px;
    background-color: #f0f0f5;
    border: 1px solid #d5d5d5;
    margin: 10px auto;
}
button{
    display: block;
    padding: 15px 25px;
    border: none;
    background-color: #46b2f0;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    margin: auto;
    width: 218px;
}
button:hover{
    background-color: #3e9dd4;
    transition: all .3s ease-in-out;
}

.link{
    display: block;
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
    color: black;
}
.error{
    font-size: 12px;
    text-align: center;
    color: #ff5656;
    margin-bottom: 10px;
}
@media screen and (max-width: 800px){
    .background .left{
        opacity: 8%;
        animation: none;
    }
    .background .right{
        width: 0;
    }
    .title{
        font-weight: 700;
    }
}
