64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f2f2f2;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.wrapper {
|
|
flex: 1; /* Der Hauptinhalt nimmt den verfügbaren Platz ein */
|
|
}
|
|
|
|
.form-container {
|
|
max-width: 600px;
|
|
margin: 20px auto;
|
|
background-color: #f5f5f5;
|
|
padding: 25px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
form h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 15px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="tel"],
|
|
textarea {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-top: 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* NEU: Styling für den Absende-Link */
|
|
.button-submit {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
background-color: #ff6600;
|
|
color: white;
|
|
text-decoration: none;
|
|
padding: 12px;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
text-align: center;
|
|
box-sizing: border-box; /* Damit Breite + Padding sauber passen */
|
|
}
|
|
|
|
.button-submit:hover {
|
|
background-color: #ff6600;
|
|
}
|