/* Session Booking Form — 1a0d1b13 */

.sbf-section-1a0d1b13 {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f3ff 0%, #f9fafb 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.sbf-container-1a0d1b13 {
    width: 100%;
    max-width: 820px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 48px 48px 40px;
    border-top: 4px solid #7c3aed;
}

.sbf-form-1a0d1b13 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sbf-row-1a0d1b13 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sbf-row-full-1a0d1b13 {
    grid-template-columns: 1fr;
}

.sbf-field-1a0d1b13 {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sbf-field-1a0d1b13 label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.sbf-req-1a0d1b13 {
    color: #7c3aed;
    font-weight: 700;
}

.sbf-field-1a0d1b13 input,
.sbf-field-1a0d1b13 select,
.sbf-field-1a0d1b13 textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #374151;
    background: #ffffff;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.sbf-field-1a0d1b13 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.sbf-field-1a0d1b13 textarea {
    resize: vertical;
    min-height: 120px;
}

.sbf-field-1a0d1b13 input::placeholder,
.sbf-field-1a0d1b13 textarea::placeholder {
    color: #9ca3af;
}

.sbf-field-1a0d1b13 input:focus,
.sbf-field-1a0d1b13 select:focus,
.sbf-field-1a0d1b13 textarea:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.sbf-field-1a0d1b13 input.sbf-invalid-1a0d1b13,
.sbf-field-1a0d1b13 select.sbf-invalid-1a0d1b13,
.sbf-field-1a0d1b13 textarea.sbf-invalid-1a0d1b13 {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.sbf-error-1a0d1b13 {
    font-size: 12px;
    color: #ef4444;
    min-height: 16px;
    line-height: 1.3;
}

/* Checkbox */
.sbf-checkbox-wrap-1a0d1b13 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.sbf-checkbox-wrap-1a0d1b13 input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: #7c3aed;
    cursor: pointer;
    -webkit-appearance: auto;
    appearance: auto;
}

.sbf-checkbox-wrap-1a0d1b13 label {
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
}

.sbf-checkbox-wrap-1a0d1b13 .sbf-error-1a0d1b13 {
    width: 100%;
}

/* Submit Button */
.sbf-submit-1a0d1b13 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: var(--sbf-btn-bg, #7c3aed);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
    font-family: inherit;
    line-height: 1;
    box-sizing: border-box;
}

.sbf-submit-1a0d1b13:hover {
    background: var(--sbf-btn-hover, #6d28d9);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.sbf-submit-1a0d1b13:active {
    transform: translateY(0);
}

.sbf-submit-1a0d1b13:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.sbf-spinner-1a0d1b13 {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sbf-spin-1a0d1b13 0.6s linear infinite;
}

.sbf-submit-1a0d1b13.sbf-loading-1a0d1b13 .sbf-spinner-1a0d1b13 {
    display: inline-block;
}

.sbf-submit-1a0d1b13.sbf-loading-1a0d1b13 .sbf-btn-text-1a0d1b13 {
    opacity: 0.8;
}

@keyframes sbf-spin-1a0d1b13 {
    to { transform: rotate(360deg); }
}

/* Success Overlay */
.sbf-success-overlay-1a0d1b13 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    animation: sbf-fadeIn-1a0d1b13 0.3s ease;
}

.sbf-success-popup-1a0d1b13 {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: sbf-slideUp-1a0d1b13 0.35s ease;
}

.sbf-success-icon-1a0d1b13 {
    margin-bottom: 16px;
}

.sbf-success-text-1a0d1b13 {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 24px;
}

.sbf-success-close-1a0d1b13 {
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #7c3aed;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.sbf-success-close-1a0d1b13:hover {
    background: #6d28d9;
}

@keyframes sbf-fadeIn-1a0d1b13 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sbf-slideUp-1a0d1b13 {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .sbf-container-1a0d1b13 {
        padding: 32px 24px 28px;
    }

    .sbf-row-1a0d1b13 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .sbf-container-1a0d1b13 {
        padding: 24px 16px 20px;
        border-radius: 12px;
    }

    .sbf-field-1a0d1b13 input,
    .sbf-field-1a0d1b13 select,
    .sbf-field-1a0d1b13 textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
}
