54 lines
946 B
CSS
54 lines
946 B
CSS
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background: url("./background.png");
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.login-container {
|
|
background-color: var(--medium-gray);
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
padding: 30px;
|
|
text-align: center;
|
|
color: var(--light-gray);
|
|
width: 300px;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
label {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
input {
|
|
padding: 10px;
|
|
margin-bottom: 16px;
|
|
border: 1px solid var(--discord-blue);
|
|
border-radius: 4px;
|
|
background-color: var(--dark-steel);
|
|
color: white;
|
|
}
|
|
|
|
button {
|
|
padding: 12px;
|
|
background-color: var(--discord-blue);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: var(--dark-steel);
|
|
} |