34 lines
488 B
CSS
34 lines
488 B
CSS
.page-section {
|
|
margin-top: 100px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
padding: 0 25px;
|
|
box-sizing: border-box;
|
|
}
|
|
.page-body-title {
|
|
font-size: 30px;
|
|
line-height: 100px;
|
|
}
|
|
.page-body-text {
|
|
color: #bbb;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
margin: 0 0 50px 0;
|
|
text-align: center;
|
|
}
|
|
.page-body-button {
|
|
width: 100%;
|
|
}
|
|
|
|
.info {
|
|
text-align: center;
|
|
}
|
|
|
|
.input {
|
|
height: 40px;
|
|
padding: 10px;
|
|
}
|