100 lines
1.7 KiB
CSS
Raw Normal View History

2025-01-18 13:21:38 +01:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #e6e6e6;
line-height: 1.5;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
2025-01-24 03:28:43 +01:00
generic-form {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #000000;
}
.generic-form-container {
background-color: #0f0f0f;
2025-01-18 13:21:38 +01:00
border-radius: 10px;
padding: 30px;
width: 400px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
text-align: center;
2025-01-24 03:28:43 +01:00
}
.generic-form-container h1 {
2025-01-18 13:21:38 +01:00
font-size: 2em;
color: #f05a28;
margin-bottom: 20px;
2025-01-24 03:28:43 +01:00
}
input {
border: 10px solid #000000;
}
.generic-form-container generic-field {
2025-01-18 13:21:38 +01:00
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #333;
border-radius: 5px;
background-color: #1a1a1a;
color: #e6e6e6;
font-size: 1em;
2025-01-24 03:28:43 +01:00
}
.generic-form-container button {
2025-01-18 13:21:38 +01:00
width: 100%;
padding: 10px;
background-color: #f05a28;
border: none;
border-radius: 5px;
color: white;
font-size: 1em;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
2025-01-24 03:28:43 +01:00
}
.generic-form-container button:hover {
2025-01-18 13:21:38 +01:00
background-color: #e04924;
2025-01-24 03:28:43 +01:00
}
.generic-form-container a {
2025-01-18 13:21:38 +01:00
color: #f05a28;
text-decoration: none;
display: block;
margin-top: 15px;
font-size: 0.9em;
transition: color 0.3s;
2025-01-24 03:28:43 +01:00
}
.generic-form-container a:hover {
2025-01-18 13:21:38 +01:00
color: #e04924;
2025-01-24 03:28:43 +01:00
}
.error {
2025-01-18 13:21:38 +01:00
color: #d8000c;
font-size: 0.9em;
margin-top: 5px;
2025-01-24 03:28:43 +01:00
}
@media (max-width: 500px) {
.generic-form-container {
width: 90%;
2025-01-18 13:21:38 +01:00
}
2025-01-24 03:28:43 +01:00
}