.fl-sell-form-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    padding: 60px 20px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 16px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background 0.5s ease;
    background: transparent;
}

/* Elegant performance-friendly dark blue ambient animated background (Disabled) */
.fl-sell-form-wrapper.fl-animated-bg-active {
    background: transparent;
}

.fl-bg-ambient-blobs {
    display: none;
}

.fl-blob {
    display: none;
}

.fl-sell-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 820px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.fl-form-header {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.fl-steps-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fl-step-bullet {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #cbd5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #718096;
    transition: all 0.3s ease;
}

.fl-step-bullet.active {
    color: #ffffff;
    border-color: #274d83;
    background-color: #274d83;
}

.fl-step-line {
    width: 64px;
    height: 2px;
    background-color: #cbd5e0;
}

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

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

@keyframes flFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fl-form-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-align: center;
    color: #1a2c4d;
}

.fl-form-subtitle {
    font-size: 17px;
    color: #898f98;
    margin: 0 0 28px 0;
    text-align: center;
}

.fl-form-field {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}

.fl-form-field label {
    font-size: 15px;
    font-weight: 600;
    color: #0d141a;
    margin-bottom: 8px;
}

.fl-form-field label .required {
    color: #e53e3e;
}

.fl-input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.fl-icon-pin {
    position: absolute;
    left: 16px;
    font-size: 20px;
    pointer-events: none;
}

.fl-input-icon-wrapper input {
    padding-left: 46px !important;
}

.fl-sell-form input[type="text"],
.fl-sell-form input[type="email"],
.fl-sell-form input[type="tel"] {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #898f98;
    border-radius: 8px;
    font-size: 16px;
    color: #0d141a;
    background-color: #f4f7fb;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.fl-sell-form input:focus {
    outline: none;
    border-color: #274d83;
    background-color: #ffffff;
}

.fl-radio-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.fl-radio-card {
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fl-radio-card:hover {
    background-color: #f4f7fb;
}

.fl-radio-card input[type="radio"] {
    accent-color: #274d83;
    width: 20px;
    height: 20px;
    margin: 0;
}

.fl-radio-card span {
    font-size: 16px;
    font-weight: 500;
    color: #0d141a;
}

.fl-radio-inline {
    display: flex;
    gap: 24px;
    align-items: center;
}

.fl-radio-inline label {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}

.fl-radio-inline input {
    accent-color: #274d83;
    width: 20px;
    height: 20px;
}

.fl-form-consent {
    margin-bottom: 22px;
}

.fl-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #898f98;
    line-height: 1.4;
    cursor: pointer;
}

.fl-consent-checkbox input {
    accent-color: #274d83;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.fl-form-grid-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 480px) {
    .fl-form-grid-fields {
        grid-template-columns: 1fr;
    }
}

.fl-sell-btn {
    width: 100%;
    padding: 18px 28px;
    color: #ffffff;
    background-color: #274d83;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s ease, filter 0.2s ease;
    box-shadow: 0 4px 6px rgba(39, 77, 131, 0.2);
}

.fl-sell-btn:hover {
    filter: brightness(1.08);
}

.fl-sell-btn:active {
    transform: scale(0.98);
}

.fl-form-btn-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
}

.fl-back-btn {
    padding: 18px;
    background: none;
    border: 1px solid #898f98;
    border-radius: 8px;
    color: #0d141a;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.fl-back-btn:hover {
    background-color: #f4f7fb;
}

.fl-form-feedback {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.fl-form-feedback.success {
    color: #38a169;
}

.fl-form-feedback.error {
    color: #e53e3e;
}