/* ==========================================================================
   Vendors Listing — Customer Register Widget (Simple)
   Name, Email, Password — for event planners / buyers
   ========================================================================== */

.vl-wrapper .vl-customer-register {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.vl-wrapper .vl-customer-register__card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 40px !important;
    max-width: 480px !important;
    width: 100% !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #eef0f4 !important;
    box-sizing: border-box !important;
}

.vl-wrapper .vl-customer-register__heading {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

.vl-wrapper .vl-customer-register__subheading {
    font-size: 15px !important;
    color: #636E72 !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}

/* Row: 2-column for first + last name */
.vl-wrapper .vl-customer-register__row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin-bottom: 14px !important;
}

.vl-wrapper .vl-customer-register__field {
    margin-bottom: 14px !important;
    display: flex !important;
    flex-direction: column !important;
}

.vl-wrapper .vl-customer-register__row .vl-customer-register__field {
    margin-bottom: 0 !important;
}

.vl-wrapper .vl-customer-register__field label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #636E72 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.vl-wrapper .vl-customer-register__input {
    width: 100% !important;
    height: 48px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    font-family: inherit !important;
    color: #1a1a2e !important;
    background: #f8f9fb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    outline: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    box-sizing: border-box !important;
}

.vl-wrapper .vl-customer-register__input:focus {
    border-color: #6C5CE7 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12) !important;
}

.vl-wrapper .vl-customer-register__input::placeholder {
    color: #9ca3af !important;
}

.vl-wrapper .vl-customer-register__submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 50px !important;
    margin-top: 8px !important;
    padding: 0 24px !important;
    background: #6C5CE7 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

.vl-wrapper .vl-customer-register__submit:hover {
    background: #5A4BD1 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3) !important;
}

.vl-wrapper .vl-customer-register__submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Messages */
.vl-wrapper .vl-customer-register__msg {
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-top: 16px !important;
}

.vl-wrapper .vl-customer-register__msg--success {
    background: #d1fae5 !important;
    color: #065f46 !important;
}

.vl-wrapper .vl-customer-register__msg--error {
    background: #fee2e2 !important;
    color: #991b1b !important;
}

/* Footer links */
.vl-wrapper .vl-customer-register__footer {
    text-align: center !important;
    margin: 20px 0 0 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    color: #636E72 !important;
}

.vl-wrapper .vl-customer-register__link {
    color: #6C5CE7 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.2s !important;
}

.vl-wrapper .vl-customer-register__link:hover {
    color: #5A4BD1 !important;
    text-decoration: underline !important;
}

/* Vendor CTA at the bottom */
.vl-wrapper .vl-customer-register__vendor-cta {
    margin-top: 16px !important;
    padding-top: 20px !important;
    border-top: 1px solid #eef0f4 !important;
    text-align: center !important;
}

.vl-wrapper .vl-customer-register__link--vendor {
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* Logged-in state */
.vl-wrapper .vl-customer-register__card--logged-in {
    text-align: center !important;
}

/* Responsive */
@media (max-width: 480px) {
    .vl-wrapper .vl-customer-register {
        padding: 12px !important;
    }
    .vl-wrapper .vl-customer-register__card {
        padding: 28px 20px !important;
    }
    .vl-wrapper .vl-customer-register__heading {
        font-size: 24px !important;
    }
    .vl-wrapper .vl-customer-register__row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .vl-wrapper .vl-customer-register__row .vl-customer-register__field {
        margin-bottom: 14px !important;
    }
}
