/* Grundlegendes Styling */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9fb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-size: 16px;
    color: #333;
}

.form-explanation {
    text-align: justify; /* Blocksatz für den Erklärungstext */
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo {
    width: 260px;
    margin-bottom: 10px;
    margin-top: 10px;

}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.intro-text, .check-inbox-text, .footer p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    text-align: left;
    margin-bottom: 8px;
    font-size: 16px;
    color: #555;
}

input[type="text"], input[type="email"] {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus {
    border-color: #007bff;
}

button, a.button {
    background-color: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

button:hover, a.button:hover {
    background-color: #218838;
}

.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid; /* Neu: Einheitlicher Rahmen */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Neu: Schattierung */
}

.message.success-message {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb; /* Grüner Rand für Erfolgsmeldungen */
}

.message.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb; /* Roter Rand für Fehlermeldungen */
}
.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #777;
}
.small-footer {
	font-size: 12px;
    color: #777;
    text-align: center;
    margin-top: 20px;
}
.small-footer a {
    color: #777;
    text-decoration: none;
    margin: 0 8px;
}
.small-footer a:hover {
	text-decoration: underline;
}