/* Seller Acquisition Form Styles */
.seller-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.seller-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #eaeaea;
}

.seller-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2b2b2b;
    font-weight: 700;
    font-size: 28px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.form-group.half-width {
    width: 50%;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.radio-group {
    display: flex;
    gap: 25px;
    margin-top: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #555;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: #0056b3;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #337dcc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.btn-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    background-color: #f0fdf4;
    color: #166534;
    padding: 30px;
    border-radius: 12px;
    margin-top: 0;
    text-align: center;
    border: 1px solid #bbf7d0;
}

.success-message h4 {
    margin-bottom: 10px;
    font-size: 24px;
}

.success-message i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #22c55e;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-group.half-width {
        width: 100%;
    }
    
    .seller-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .btn-submit {
        font-size: 16px;
        padding: 14px;
    }
}
