/* get-started.css */

.form-container {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 8px;
    font-weight: 500;
}

.progress-bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 10%; /* Starts at step 1 */
}

/* Wizard Steps */
.wizard-form {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    animation: fadeInSlide 0.4s ease forwards;
}

.form-step.active {
    display: block;
}

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

.form-step h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Inputs and Textareas */
.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.1);
}

/* Radio and Checkbox grids */
.radio-grid,
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.radio-card input,
.checkbox-card input {
    display: none;
}

.card-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.radio-card input:checked + .card-content,
.checkbox-card input:checked + .card-content {
    background: rgba(138, 43, 226, 0.15); /* Purple accent low opacity */
    border-color: var(--accent-purple);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
}

/* Form Actions (Buttons) */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-next,
.btn-submit {
    margin-left: auto; /* Aligns next button to the right if back isn't present */
}

/* Confirmation Step */
.confirmation-step {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(138, 43, 226, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4ade80; /* Green accent */
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .radio-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-step h2 {
        font-size: 1.5rem;
    }
}
