/* Grundlegendes Layout */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f3f4f6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.auth-box {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 1rem;
}

/* Überschrift */
.auth-box h1 {
    margin: 0 0 1.5rem 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Formular-Gruppen */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #6b7280;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Submit Button */
.auth-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-button:hover {
    background-color: #2563eb;
}

.auth-button:active {
    background-color: #1d4ed8;
}

.auth-button i {
    font-size: 1rem;
}

/* Fehlermeldungen */
.error-message {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.error-message i {
    font-size: 1rem;
}

/* Erfolgsmeldungen */
.success-message {
    background-color: #d1fae5;
    color: #059669;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.success-message i {
    font-size: 1rem;
}

.success-message a,
.success-link {
    color: #059669;
    text-decoration: underline;
    font-weight: 500;
}

.success-message a:hover,
.success-link:hover {
    color: #047857;
    text-decoration: none;
}

/* Links */
.auth-links {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-links a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.auth-links i {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-box {
        padding: 1.5rem;
        margin: 1rem;
    }

    .auth-box h1 {
        font-size: 1.25rem;
    }

    .form-group input {
        padding: 0.625rem;
    }

    .auth-button {
        padding: 0.625rem;
    }
}

/* Zusätzliche Hilfsstile */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
} 