33 lines
520 B
CSS
33 lines
520 B
CSS
*{
|
|
box-sizing: border-box;
|
|
}
|
|
body{
|
|
position: relative;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
overflow-x: hidden;
|
|
}
|
|
.page-wrapper {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
.title {
|
|
text-align: center;
|
|
margin-bottom: 1.5rem;
|
|
font-weight: 700;
|
|
font-size: 1.8rem;
|
|
color: #222;
|
|
}
|
|
.error-text {
|
|
color: red;
|
|
font-size: 0.95rem;
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
} |