84 lines
1.2 KiB
CSS
84 lines
1.2 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #2c3338;
|
|
}
|
|
|
|
.container {
|
|
font-size: 17px;
|
|
position: absolute;
|
|
max-width: 500px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #ccc;
|
|
font-weight: 600;
|
|
border: 2px solid #606468;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.authInput {
|
|
display: block;
|
|
margin: 10px auto;
|
|
width: 300px;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
font-size: 17px;
|
|
color: #ccc;
|
|
background-color: #3b4148;
|
|
border: none;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
margin: 10px auto;
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
font-size: 17px;
|
|
color: #ccc;
|
|
background-color: #415eac;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease, transform 0.3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #2e4781;
|
|
}
|
|
|
|
button:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
.errorVisible {
|
|
visibility: visible;
|
|
color: #ee6161;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.errorHidden {
|
|
visibility: hidden;
|
|
color: #ee6161;
|
|
}
|
|
|
|
.footnoteLink {
|
|
text-decoration: underline;
|
|
color: #ccc;
|
|
}
|
|
|
|
.footnoteLink:hover {
|
|
text-decoration: none;
|
|
color: #415eac;
|
|
}
|
|
|
|
.footnote {
|
|
color: #606468;
|
|
} |