/* Globale CSS-Regeln */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to top right, #003874, #cce4f6);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Zentrierte Box für Formulare und Nachrichten */
.confirmation, form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Stil für die Überschrift */
h2 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Stil für Paragrafen */
p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Button-Styling */
button {
    background-color: #003874;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
}

button:hover {
    background-color: #002c5a;
}

/* Input-Feld-Styling */
input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Label-Styling */
label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    text-align: left;
    width: 100%;
}
