2022-09-11 16:52:37 +01:00
|
|
|
body {
|
|
|
|
background-color: black;
|
|
|
|
color: rebeccapurple;
|
|
|
|
}
|
2022-09-11 17:30:19 +01:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-09-12 16:36:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
border-color: rebeccapurple;
|
|
|
|
}
|
|
|
|
|
2022-09-13 01:35:05 +01:00
|
|
|
form>div {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
2022-09-12 16:36:14 +01:00
|
|
|
.error {
|
|
|
|
color: rgba(255, 0, 0, 0.7);
|
|
|
|
font-weight: bold;
|
|
|
|
border: 5px solid rgba(99, 0, 0, 0.2);
|
|
|
|
background-color: rgba(95, 0, 0, 0.5);
|
|
|
|
}
|
2022-09-13 01:35:05 +01:00
|
|
|
|
|
|
|
.success {
|
|
|
|
color: rgba(0, 202, 0, 0.7);
|
|
|
|
font-weight: bold;
|
|
|
|
border: 5px solid rgba(0, 99, 0, 0.2);
|
|
|
|
background-color: rgba(0, 99, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
#central {
|
|
|
|
width: 30%;
|
|
|
|
border: 5px solid rebeccapurple;
|
|
|
|
height: 30vw;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: rgba(13, 6, 19, 0.4);
|
|
|
|
font-size: large;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: rebeccapurple;
|
|
|
|
}
|