/**
 * Erfolgswerkstatt - Restore Page Styles
 */

/* Reset for Restore Page */
body.signin-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    background: var(--wolf-dark);
    margin: 0;
    padding: 0;
}

/* Fade-in Animation */
.signin-form-card {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Indicator */
.restore-steps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.restore-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

.restore-step-dot.active {
    background: var(--wolf-primary);
    transform: scale(1.25);
}

.restore-step-dot.completed {
    background: var(--wolf-secondary);
}

/* Verification Code Input */
.verification-code-inputs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.verification-code-input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.verification-code-input:focus {
    border-color: var(--wolf-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 74, 25, 0.1);
}

.verification-code-input.filled {
    border-color: var(--wolf-secondary);
    background: #f8f8f8;
}

/* Resend Code Link */
.resend-code-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.resend-code-link a {
    color: var(--wolf-primary);
    text-decoration: none;
    font-weight: 500;
}

.resend-code-link a:hover {
    text-decoration: underline;
}

/* Info Alert */
.restore-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.875rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: #6c757d;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.restore-info i {
    color: #adb5bd;
    margin-top: 2px;
}

/* Step Content Animation */
.restore-step-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Password Requirements */
.password-requirements {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.5rem;
}
