/* Container Box with Glassmorphism */
.nazsell-form-wrapper {
    background: rgba(120, 105, 140, 0.45); /* Exact purple translucent background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 20px;
    max-width: 800px;
    margin: 40px auto;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Header Design */
.nazsell-form-wrapper h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

/* Section Headings */
.nazsell-section {
    margin-bottom: 25px;
}

.nazsell-section h3 {
    margin-top: 20px;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

/* Form Layout Grids */
.nazsell-form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.nazsell-form-group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

/* Labels */
.nazsell-form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

/* Inputs Matching Image Design */
.nazsell-form-group input[type="text"],
.nazsell-form-group input[type="email"],
.nazsell-form-group input[type="tel"],
.nazsell-form-group input[type="file"] {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.18); /* Translucent input background */
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.nazsell-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nazsell-form-group input:focus {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Helper Notes under inputs */
.nazsell-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

/* Submit Button */
/* Submit & Setup Button */
.nazsell-form-wrapper button[type="submit"],
.nazsell-form-wrapper .nazsell-submit-btn {
    width: 100% !important;
    background: #ffffff !important;
    color: #6a5e77 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 15px !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    margin-top: 10px !important;
}

.nazsell-submit-btn:hover {
    background: #f0ecfc;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
/* Success Message */
.nazsell-success {
    background: rgba(76, 175, 80, 0.85);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
}