You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
61 lines
837 B
61 lines
837 B
* { |
|
background-color: #272727; |
|
} |
|
|
|
body { |
|
text-align: center; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
height: 100vh; |
|
} |
|
|
|
.container-auth { |
|
border-radius: 10px; |
|
padding: 20px; |
|
text-align: center; |
|
max-width: 400px; |
|
width: 100%; |
|
} |
|
|
|
h1 { |
|
font-weight: bold; |
|
font-size: 24px; |
|
line-height: 30px; |
|
font-weight: 600; |
|
} |
|
|
|
h2 { |
|
font-weight: 400; |
|
font-size: 16px; |
|
line-height: 20px; |
|
color: #fa777c; |
|
} |
|
|
|
label { |
|
font-weight: 700; |
|
font-size: 12px; |
|
color: #b5bac1; |
|
line-height: 16px; |
|
} |
|
|
|
input { |
|
color: #fff; |
|
width: 100%; |
|
height: 30px; |
|
border-radius: 5px; |
|
padding: 5px; |
|
} |
|
|
|
button { |
|
font-weight: 500; |
|
font-size: 16px; |
|
line-height: 24px; |
|
color: #fff; |
|
margin-top: 10px; |
|
padding: 10px 20px; |
|
cursor: pointer; |
|
border-radius: 10px; |
|
width: 100%; |
|
margin-bottom: 10px; |
|
}
|
|
|