40 lines
583 B
SCSS
40 lines
583 B
SCSS
.container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 27px;
|
|
font-weight: 600;
|
|
color: #121620;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.text {
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
color: #121620;
|
|
line-height: 25px;
|
|
margin-top: 33px;
|
|
margin-bottom: 57px;
|
|
text-align: center;
|
|
}
|
|
|
|
.button {
|
|
margin-top: 37px;
|
|
}
|
|
|
|
.input {
|
|
border: 2px solid #DEE5F9;
|
|
border-radius: 8px !important;
|
|
|
|
&:focus {
|
|
border-color: #6B7BAA !important;
|
|
}
|
|
}
|
|
|
|
.placeholder {
|
|
color: #6B7BAA;
|
|
} |