.success-form-card {
    border: none;
    border-radius: 18px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.form-title {
    font-size: 46px;
    font-weight: 800;
    color: rgb(17, 17, 17);
    margin-bottom: 10px;
    text-align: center;
}

.form-sub {
    font-size: 18px;
    opacity: 0.75;
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: 999px;
    background: #f3f4ff;
    font-size: 13px;
    font-weight: 500;
    color: #4b5b8f;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-item.active {
    background: linear-gradient(135deg, #1043fa, #6c5ce7);
    color: #fff;
    box-shadow: 0 10px 25px rgba(16, 67, 250, 0.35);
    transform: translateY(-2px);
}

.form-step {
    display: none;
}

.form-step.form-step-active {
    display: block;
    animation: fadeInUp 0.5s cubic-bezier(0.35, 0.5, 0.65, 0.95) forwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.conditional-box {
    background: #f9fafc;
    border-radius: 12px;
    padding: 15px 15px;
    animation: fadeInUp 0.4s ease-out forwards;
}

/* Form Controls Modernization */
.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    transition: all 0.2s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
    transform: translateY(-1px);
}

.form-check-input {
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background-color: #1043fa;
    border-color: #1043fa;
    transform: scale(1.1);
}

.btn {
    transition: all 0.3s ease;
}

.btn:active {
    transform: scale(0.96);
}

/* Responsive */
@media (max-width: 768px) {
    .success-form-card {
        padding: 15px 15px;
    }

    .steps-indicator {
        flex-direction: column;
    }
}