/* auth.css - Bereinigte Version */

.auth-card {
    max-width: 500px;
    margin: 0 auto;
}

.auth-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.auth-form {
    margin-bottom: var(--spacing-lg);
}

.auth-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: var(--spacing-lg) 0;
    color: var(--text-secondary);
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-separator::before {
    margin-right: var(--spacing-md);
}

.auth-separator::after {
    margin-left: var(--spacing-md);
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.reset-password-link {
    display: block;
    text-align: right;
    margin-top: var(--spacing-xs);
    color: var(--secondary);
    text-decoration: none;
    font-size: var(--step--1);
}

.reset-password-link:hover {
    text-decoration: underline;
}

.auth-switch {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--text-secondary);
}

.auth-switch a {
    color: var(--primary);
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}