58 lines
862 B
CSS
58 lines
862 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background-color: #454444;
|
|
color: white;
|
|
}
|
|
|
|
.auth {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 20%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 250px;
|
|
padding: 30px;
|
|
border: white solid 1px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.auth h1 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
input {
|
|
padding: 5px;
|
|
margin: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
input[type=button], input[type=submit], input[type=reset] {
|
|
background-color: #04AA6D;
|
|
border: none;
|
|
color: white;
|
|
padding: 8px 16px;
|
|
text-decoration: none;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.auth a {
|
|
color: white;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
} |