20 lines
330 B
SCSS
20 lines
330 B
SCSS
.login {
|
|
display: flex;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
align-items: center;
|
|
.inner {
|
|
width: 37%;
|
|
min-width: 500px;
|
|
max-width: 700px;
|
|
margin-top: -10vh;
|
|
h3 {
|
|
margin-bottom: 20px;
|
|
font-size: 28px;
|
|
color: #454545;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|