/**
 * Erfolgswerkstatt - Signup Page Styles
 */

/* Reset für Signup 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;
}

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

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

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

.signup-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;
}

/* Onboarding Styles */
.onboarding-option {
    display: block;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.onboarding-option:hover {
    border-color: #ccc;
    background: #fafafa;
}

.onboarding-option.selected {
    border-color: var(--wolf-primary);
    background: rgba(230, 74, 25, 0.02);
}

.onboarding-option input[type="radio"] {
    display: none;
}

.onboarding-option-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.onboarding-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6c757d;
}

.onboarding-option.selected .onboarding-option-icon {
    background: var(--wolf-primary);
    color: #fff;
}

.onboarding-option-text {
    flex: 1;
}

.onboarding-option-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--wolf-dark);
}

.onboarding-option-desc {
    font-size: 0.8125rem;
    color: #6c757d;
    margin-top: 0.125rem;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.step-navigation .btn-back {
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.step-navigation .btn-back:hover {
    color: var(--wolf-dark);
}

/* Form transitions */
.signup-form-container {
    min-height: 320px;
}

.signup-step-content {
    animation: fadeIn 0.3s ease;
}

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