/* ============================================================
   SIGNUP PAGE STYLES
   ============================================================ */

.signup-section {
    min-height: calc(100vh - 80px);
    padding: var(--space-xl) 0;
    background: var(--warm-white);
}

.signup-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--cream);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--soft-gray);
}

.progress-step.active {
    color: var(--charcoal);
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: var(--font-display);
    font-size: 1.125rem;
}

.progress-step.active .progress-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--stone);
    margin: 0 1rem;
}

.progress-step span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Signup Form */
.signup-step {
    animation: fadeInUp 0.5s ease-out;
}

.signup-step.hidden {
    display: none;
}

.signup-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.signup-subtitle {
    text-align: center;
    color: var(--slate);
    margin-bottom: var(--space-lg);
}

.signup-form {
    margin-top: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

label {
    display: block;
    font-weight: 500;
    font-size: 0.938rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--stone);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 112, 0.1);
}

.form-helper {
    display: block;
    font-size: 0.813rem;
    color: var(--soft-gray);
    margin-top: 0.375rem;
    font-style: italic;
}

.btn-full {
    width: 100%;
    margin-top: var(--space-sm);
}

/* Reminder Inputs */
.reminder-input {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border: 1px solid var(--stone);
}

.reminder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.reminder-header h3 {
    font-size: 1.125rem;
    font-family: var(--font-body);
}

.required-badge {
    background: var(--gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.remove-reminder {
    background: transparent;
    color: var(--soft-gray);
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.5rem;
}

.remove-reminder:hover {
    background: rgba(192, 97, 74, 0.1);
    color: #C0614A;
}

.custom-occasion {
    margin-top: 0.5rem;
}

.custom-occasion.hidden {
    display: none;
}

.date-helper {
    font-size: 0.813rem;
    color: var(--soft-gray);
    margin-top: var(--space-sm);
    padding: 0.75rem;
    background: var(--warm-white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.add-reminder-btn {
    margin-bottom: var(--space-md);
}

.reminder-count {
    color: var(--soft-gray);
    font-size: 0.875rem;
}

.add-reminder-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.form-actions .btn {
    flex: 1;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: var(--space-lg) 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Error Messages */
.error-message {
    background: #FFE5E5;
    color: #C0614A;
    padding: 0.875rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    font-size: 0.938rem;
    border: 1px solid #C0614A;
}

/* Responsive */
@media (max-width: 768px) {
    .signup-container {
        padding: var(--space-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-bar {
        font-size: 0.813rem;
    }
    
    .progress-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
