44 lines
680 B
SCSS
44 lines
680 B
SCSS
.login-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
height: 100vh;
|
|
padding-top: 100px;
|
|
position: relative;
|
|
|
|
.back-btn {
|
|
position: absolute;
|
|
top: 44px;
|
|
left: 4px;
|
|
width: 44px;
|
|
height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 10;
|
|
}
|
|
|
|
.login-header {
|
|
margin-top: 40px;
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
.login-btn-area {
|
|
margin-top: 20px;
|
|
width: 304px;
|
|
|
|
.login-btn {
|
|
background: #2d91ff;
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
|
|
.login-agreement {
|
|
margin-top: 80px;
|
|
width: 304px;
|
|
}
|
|
}
|