body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 0 15px;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.form-group {
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #007bff;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    justify-content: center; 
    align-items: center; 
    margin: 0 auto;
}

.alert.success {
    background-color: #28a745;
    color: white;
}

.alert.danger {
    background-color: #dc3545;
    color: white;
}

@media (max-width: 600px) {
    .container {
        padding: 0 10px;
    }

    button {
        font-size: 16px;
        width: 100%;
    }
}

.policies {
    text-align: center; /* Zentriert den Inhalt */
}

.policies p {
    margin: 5px 0; /* Abstand zwischen den Links */
}

.policies a {
    text-decoration: none; /* Unterstreichung entfernen */
    color: #007bff; /* Linkfarbe */
}

.policies a:hover {
    text-decoration: underline; /* Unterstreichung bei Hover */
}