:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --danger-color: #f72585;
    --success-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body.auth-page {
    background-color: #f5f7fb;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-container {
    width: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.auth-progress {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #adb5bd;
}

.progress-step.active {
    color: var(--primary-color);
}

.progress-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.progress-step.active span {
    background-color: var(--primary-color);
    color: white;
}

.progress-step p {
    margin: 0;
    font-size: 0.9rem;
}

.auth-step {
    padding: 40px;
    display: none;
}

.auth-step.active {
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.auth-header p {
    color: #6c757d;
    margin: 0;
}

.form-floating label {
    color: #6c757d;
}

.auth-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.btn-next, .btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-next:hover, .btn-submit:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-prev {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-prev:hover {
    background-color: #f8f9fa;
}

.password-strength {
    width: 100%;
}

.strength-bar {
    height: 5px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 3px;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background-color: var(--danger-color);
    transition: width 0.3s, background-color 0.3s;
}

.strength-text {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Login-spezifische Styles */
.login-page .auth-container {
    max-width: 450px;
}

.auth-logo {
    text-align: center;
    padding: 30px 0 0;
}

.auth-logo img {
    max-height: 60px;
}

.auth-card {
    padding: 30px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .auth-progress {
        padding: 15px 20px;
    }
    
    .progress-step p {
        display: none;
    }
    
    .auth-step {
        padding: 25px;
    }
}