2024-10-29 21:48:27 +01:00
|
|
|
/* Zentrieren des gesamten Inhalts und Grundfarbgebung */
|
2024-10-29 21:09:13 +01:00
|
|
|
body {
|
2024-10-29 21:48:27 +01:00
|
|
|
font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
|
2024-10-29 21:09:13 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
2024-10-29 21:48:27 +01:00
|
|
|
background-color: #e9ecef;
|
2024-10-29 21:09:13 +01:00
|
|
|
}
|
|
|
|
|
2024-10-29 21:48:27 +01:00
|
|
|
/* Container für zentrales Layout */
|
|
|
|
.container {
|
2024-10-29 21:09:13 +01:00
|
|
|
text-align: center;
|
2024-10-29 21:48:27 +01:00
|
|
|
max-width: 500px;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Styling für die Form-Wrapper */
|
|
|
|
.form-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
gap: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Formulare aufhübschen */
|
|
|
|
.form {
|
|
|
|
background: #ffffff;
|
|
|
|
padding: 20px;
|
|
|
|
width: 75%;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
|
2024-10-29 21:09:13 +01:00
|
|
|
}
|
|
|
|
|
2024-10-29 21:48:27 +01:00
|
|
|
h1 {
|
2024-10-29 21:09:13 +01:00
|
|
|
color: #333;
|
2024-10-29 21:48:27 +01:00
|
|
|
font-size: 1.8rem;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
color: #007bff;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
margin-bottom: 15px;
|
2024-10-29 21:09:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
input, button {
|
2024-10-29 21:48:27 +01:00
|
|
|
width: 80%;
|
|
|
|
padding: 12px;
|
2024-10-29 21:09:13 +01:00
|
|
|
margin: 10px 0;
|
2024-10-29 21:48:27 +01:00
|
|
|
border-radius: 5px;
|
2024-10-29 21:09:13 +01:00
|
|
|
border: 1px solid #ddd;
|
2024-10-29 21:48:27 +01:00
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus {
|
|
|
|
outline: none;
|
|
|
|
border-color: #007bff;
|
|
|
|
box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
|
2024-10-29 21:09:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: #007bff;
|
2024-10-29 21:48:27 +01:00
|
|
|
color: #ffffff;
|
|
|
|
border: none;
|
2024-10-29 21:09:13 +01:00
|
|
|
cursor: pointer;
|
2024-10-29 21:48:27 +01:00
|
|
|
transition: background-color 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
background-color: #0056b3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Responsive Design */
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.form-wrapper {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form {
|
|
|
|
width: 90%;
|
|
|
|
}
|
2024-10-29 21:09:13 +01:00
|
|
|
}
|