34 lines
670 B
SCSS
34 lines
670 B
SCSS
.log-reg-container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 99999;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
background-image: url('../../img/bg-log-reg.png');
|
|
background-position: center;
|
|
background-size: cover;
|
|
.log-reg-content{
|
|
width: 100%;
|
|
max-width: 500px;
|
|
height: 100vh;
|
|
background-color: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
padding: 50px;
|
|
overflow: auto;
|
|
}
|
|
|
|
form{
|
|
margin: 100px 0;
|
|
}
|
|
|
|
.logo-log{
|
|
width: 150px;
|
|
height: auto;
|
|
}
|
|
}
|