.ctf-7cb3e7ce-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
    box-sizing: border-box;
}

.ctf-7cb3e7ce-container *, .ctf-7cb3e7ce-container *::before, .ctf-7cb3e7ce-container *::after {
    box-sizing: inherit;
}

/* Steps Indicator */
.ctf-7cb3e7ce-steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.ctf-7cb3e7ce-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.ctf-7cb3e7ce-step {
    position: relative;
    z-index: 2;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.ctf-7cb3e7ce-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ctf-7cb3e7ce-step-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-align: center;
}

.ctf-7cb3e7ce-step.active .ctf-7cb3e7ce-step-label {
    color: #1e293b;
    font-weight: 600;
}

/* Fields Grid */
.ctf-7cb3e7ce-step-content {
    display: none;
}

.ctf-7cb3e7ce-step-content.active {
    display: block;
}

.ctf-7cb3e7ce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .ctf-7cb3e7ce-grid {
        grid-template-columns: 1fr;
    }
}

.ctf-7cb3e7ce-field-group {
    display: flex;
    flex-direction: column;
}

.ctf-7cb3e7ce-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #475569;
}

.ctf-required {
    color: #ef4444;
}

.ctf-7cb3e7ce-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

.ctf-7cb3e7ce-input:focus {
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

textarea.ctf-7cb3e7ce-input {
    resize: vertical;
    min-height: 100px;
}

/* Footer / Nav buttons */
.ctf-7cb3e7ce-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 500px) {
    .ctf-7cb3e7ce-footer {
        flex-direction: column-reverse;
        gap: 15px;
        align-items: stretch;
    }
    .ctf-7cb3e7ce-note {
        text-align: center;
    }
    .ctf-7cb3e7ce-nav-buttons {
        justify-content: space-between;
    }
}

.ctf-7cb3e7ce-note {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ctf-7cb3e7ce-nav-buttons {
    display: flex;
    gap: 10px;
}

.ctf-7cb3e7ce-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.ctf-7cb3e7ce-btn:hover {
    opacity: 0.9;
}

.ctf-7cb3e7ce-btn:active {
    transform: scale(0.98);
}

.ctf-7cb3e7ce-btn-prev {
    background-color: #f1f5f9;
    color: #475569;
}

/* Feedback message */
.ctf-7cb3e7ce-feedback {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.ctf-7cb3e7ce-feedback.success {
    background-color: #d1fae5;
    color: #065f46;
}

.ctf-7cb3e7ce-feedback.error {
    background-color: #fee2e2;
    color: #991b1b;
}
