|
* {
|
|
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;
|
|
}
|
|
|
|
generic-form {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
background-color: #000000;
|
|
|
|
}
|
|
|
|
.generic-form-container {
|
|
|
|
background-color: #0f0f0f;
|
|
border-radius: 10px;
|
|
padding: 30px;
|
|
width: 400px;
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.generic-form-container h1 {
|
|
font-size: 2em;
|
|
color: #f05a28;
|
|
margin-bottom: 20px;
|
|
}
|
|
input {
|
|
|
|
border: 10px solid #000000;
|
|
}
|
|
.generic-form-container generic-field {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
border: 1px solid #333;
|
|
border-radius: 5px;
|
|
background-color: #1a1a1a;
|
|
color: #e6e6e6;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.generic-form-container button {
|
|
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;
|
|
}
|
|
|
|
.generic-form-container button:hover {
|
|
background-color: #e04924;
|
|
}
|
|
|
|
.generic-form-container a {
|
|
color: #f05a28;
|
|
text-decoration: none;
|
|
display: block;
|
|
margin-top: 15px;
|
|
font-size: 0.9em;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.generic-form-container a:hover {
|
|
color: #e04924;
|
|
}
|
|
|
|
|
|
.error {
|
|
color: #d8000c;
|
|
font-size: 0.9em;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
.generic-form-container {
|
|
width: 90%;
|
|
}
|
|
} |