43 lines
921 B
CSS
43 lines
921 B
CSS
body{
|
|
background-color:var(--bs-body-bg)
|
|
}
|
|
#auth{
|
|
height:100vh;overflow-x:hidden
|
|
}
|
|
#auth #auth-right{
|
|
height:100%;background:url(../static/images/bg/4853433.png),linear-gradient(90deg,#2d499d,#3f5491)
|
|
}
|
|
#auth #auth-left{
|
|
padding:5rem 8rem
|
|
}
|
|
#auth #auth-left .auth-title{
|
|
font-size:2.5rem;margin-bottom:1rem
|
|
}
|
|
#auth #auth-left .auth-subtitle{
|
|
font-size:1.3rem;line-height:2rem;color:#a8aebb
|
|
}
|
|
#auth #auth-left .auth-logo{
|
|
margin-bottom:3rem
|
|
}
|
|
#auth #auth-left .auth-logo img{
|
|
height:2rem
|
|
}
|
|
@media screen and (max-width: 1500px){
|
|
#auth #auth-left{
|
|
padding:3rem
|
|
}
|
|
}
|
|
@media screen and (max-width: 767px){
|
|
#auth #auth-left{
|
|
padding:5rem
|
|
}
|
|
}
|
|
@media screen and (max-width: 576px){
|
|
#auth #auth-left{
|
|
padding:5rem 3rem
|
|
}
|
|
}
|
|
html[data-bs-theme=dark]
|
|
#auth-right{
|
|
background:url(../../images/bg/4853433.png),linear-gradient(90deg,#2d499d,#3f5491)
|
|
} |