22 lines
404 B
CSS
22 lines
404 B
CSS
|
|
.scope-login {
|
||
|
|
display: flex;
|
||
|
|
height: 100vh;
|
||
|
|
|
||
|
|
.bg-image {
|
||
|
|
width: 50%;
|
||
|
|
background: url("/vendor/lucent/public/art.jpg");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-position: center center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-form{
|
||
|
|
width: 50%;
|
||
|
|
height: 100vh;
|
||
|
|
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
}
|