24 lines
362 B
CSS
24 lines
362 B
CSS
body {
|
|
background-color: crimson;
|
|
font-family: "Inter", sans-serif;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
form {
|
|
margin-top: 30px;
|
|
background: #ffffff;
|
|
padding: 25px;
|
|
border-radius: 14px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
|
|
}
|
|
|
|
label {
|
|
font-weight: 600;
|
|
} |