/* Booking Gateway Styles */
.mb-booking-gateway {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    background: #f5f7fa;
}

/* Form Container */
.mb-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mb-form-container h2 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* Form Groups */
.mb-form-group {
    margin-bottom: 24px;
}

.mb-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.mb-form-group input,
.mb-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.mb-form-group input:focus,
.mb-form-group select:focus {
    border-color: #0098D0;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 152, 208, 0.1);
}

/* Links */
.mb-forgot-password,
.mb-toggle-form {
    color: #0098D0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mb-forgot-password:hover,
.mb-toggle-form:hover {
    color: #007ba8;
    text-decoration: underline;
}

.mb-register-prompt {
    text-align: center;
    margin-bottom: 24px;
    color: #666;
}

/* Buttons */
.mb-form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.mb-button {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.mb-button-primary {
    background: #0098D0;
    color: #fff;
}

.mb-button-primary:hover {
    background: #007ba8;
}

.mb-button-outline {
    background: transparent;
    border: 2px solid #0098D0;
    color: #0098D0;
}

.mb-button-outline:hover {
    background: rgba(0, 152, 208, 0.1);
}

/* State Management */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mb-booking-gateway {
        padding: 40px 15px;
    }

    .mb-form-container {
        padding: 30px 20px;
    }

    .mb-form-actions {
        flex-direction: column;
    }

    .mb-button {
        width: 100%;
    }
} 