/* ===== CREATE CARD STYLES ===== */

.create-card-section {
    padding: 40px 0 80px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 40px;
}

.create-card-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Steps Indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--bg-dark);
    color: var(--text-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    z-index: 2;
}

.step.active .step-number,
.step.completed .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-align: center;
}

.step.active .step-text,
.step.completed .step-text {
    color: var(--text-dark);
    font-weight: 500;
}

.step-connector {
    flex: 1;
    height: 2px;
    background-color: var(--bg-dark);
    margin: 0 10px;
    position: relative;
    top: -18px;
    z-index: 1;
}