54 lines
917 B
CSS
54 lines
917 B
CSS
body {
|
|
background-color: #36393f;
|
|
color: #ffffff;
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.title-container {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.container {
|
|
width: 300px;
|
|
text-align: center;
|
|
}
|
|
|
|
.tittle {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"] {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-bottom: 15px;
|
|
background-color: #40444b;
|
|
border: none;
|
|
color: #ffffff;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button {
|
|
background-color: #7289da;
|
|
color: #ffffff;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
font-size: 16px;
|
|
margin: 0 auto;
|
|
display: block;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #677bc4;
|
|
} |