/* Booking Form Plugin - Frontend Styles */

.bf-booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.bf-booking-form-wrapper {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bf-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #1C1C1C;
}

.bf-verification-step {
    margin-bottom: 30px;
}

.bf-social-login-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.bf-social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bf-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bf-btn-social {
    min-width: 200px;
}

.bf-btn-google {
    background: #FFFFFF;
    color: #757575;
    border: 1px solid #dadce0;
}

.bf-btn-google:hover {
    background: #f8f9fa;
}

.bf-btn-facebook {
    background: #1877F2;
    color: #FFFFFF;
}

.bf-btn-facebook:hover {
    background: #166FE5;
}

.bf-btn-primary {
    background: #2271b1;
    color: #FFFFFF;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.bf-btn-primary:hover {
    background: #135e96;
}

.bf-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.bf-form-group {
    margin-bottom: 20px;
}

.bf-form-group-full {
    grid-column: 1 / -1;
}

.bf-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1C1C1C;
}

.bf-required {
    color: #d32f2f;
}

.bf-form-group input,
.bf-form-group textarea,
.bf-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.bf-notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    display: none;
}

.bf-notice.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.bf-notice.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.bf-recaptcha-container {
    margin: 20px 0;
}

.bf-consultation-charges {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .bf-booking-form-wrapper {
        padding: 20px;
    }
    .bf-form-grid {
        grid-template-columns: 1fr;
    }
}
