/* Reset and Base Styles */
.fbp-booking-page *,
.booking-popup * {
    box-sizing: border-box;
}

/* Floating Booking Button */
.floating-booking-btn {
    position: fixed;
    display: none !important;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #2d5be3 0%, #1e4ac5 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(45, 91, 227, 0.3);
    z-index: 9998;
    transition: all 0.3s ease;
    border: none;
    animation: pulse 2s infinite;
}

.floating-booking-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(45, 91, 227, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Popup Overlay */
.booking-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* Popup Content */
.booking-popup {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: popupFadeIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Popup Header */
.booking-popup-header {
    background: linear-gradient(135deg, #2d5be3 0%, #1e4ac5 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    position: relative;
}

.booking-popup-header h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
}

.booking-popup-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Form Styles */
.booking-form {
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8ecf1;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
}

.form-control:focus {
    border-color: #2d5be3;
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 91, 227, 0.1);
}

.form-control::placeholder {
    color: #a0a4a8;
}

/* Select Arrow */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Submit Button */
.form-submit {
    margin-top: 25px;
}

.submit-btn {
    background: linear-gradient(135deg, #2d5be3 0%, #1e4ac5 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 91, 227, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.booking-success {
    display: none;
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.booking-success h3 {
    color: #2d5be3;
    margin-bottom: 15px;
    font-size: 24px;
}

.booking-success p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-close-btn,
.fbp-success-close-btn {
    background: #2d5be3;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.success-close-btn:hover,
.fbp-success-close-btn:hover {
    background: #1e4ac5;
}

/* Booking Page Styles */
.fbp-booking-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fbp-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.fbp-booking-header {
    background: linear-gradient(135deg, #2d5be3 0%, #1e4ac5 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.fbp-booking-header h1 {
    margin: 0 0 12px 0;
    font-size: 2.8em;
    font-weight: 800;
}

.fbp-booking-header .subtitle {
    font-size: 1.3em;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 500;
}

.fbp-booking-header p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.fbp-booking-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
}

.fbp-booking-form-section {
    padding: 50px 40px;
    background: #f8f9fa;
}

.fbp-booking-info-section {
    padding: 50px 40px;
    background: white;
    border-left: 1px solid #e8ecf1;
}

.fbp-form-container {
    max-width: 100%;
}

.fbp-form-section {
    margin-bottom: 35px;
}

.fbp-form-section h3 {
    color: #2d5be3;
    margin: 0 0 25px 0;
    font-size: 1.4em;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8ecf1;
}

.fbp-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fbp-form-group {
    flex: 1;
    min-width: 200px;
}

.fbp-form-group.full-width {
    flex: 1 1 100%;
}

.fbp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.fbp-form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e8ecf1;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.fbp-form-control:focus {
    border-color: #2d5be3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 91, 227, 0.1);
}

.fbp-form-control::placeholder {
    color: #a0a4a8;
}

select.fbp-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.fbp-form-submit {
    margin-top: 30px;
    text-align: center;
}

.fbp-submit-btn {
    background: linear-gradient(135deg, #2d5be3 0%, #1e4ac5 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.fbp-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 91, 227, 0.4);
}

.fbp-submit-btn:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.form-note {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Success Message */
.fbp-success-message {
    text-align: center;
    padding: 50px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #e8ecf1;
}

.fbp-success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 25px;
    animation: bounce 0.6s ease;
}

.fbp-success-message h3 {
    color: #2d5be3;
    margin-bottom: 20px;
    font-size: 26px;
}

.fbp-success-message p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 16px;
}

/* Info Cards */
.fbp-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-left: 5px solid #2d5be3;
}

.fbp-info-card h3 {
    color: #2d5be3;
    margin-bottom: 25px;
    font-size: 1.5em;
    font-weight: 700;
}

.fbp-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fbp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fbp-benefit-icon {
    background: #4CAF50;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fbp-benefit-content h4 {
    margin: 0 0 6px 0;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
}

.fbp-benefit-content p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Hours Info */
.fbp-hours-info {
    color: #555;
}

.fbp-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.fbp-hours-days {
    font-weight: 600;
    color: #333;
}

.fbp-hours-time {
    color: #2d5be3;
    font-weight: 600;
}

.fbp-hours-note {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.fbp-hours-note p {
    margin: 0;
    color: #856404;
    font-size: 14px;
}

/* Contact Info */
.fbp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fbp-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.fbp-contact-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.fbp-contact-detail {
    color: #333;
    font-weight: 500;
}

/* Admin Page Styles */
.fbp-admin-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 30px 20px;
}

.fbp-admin-header {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
}

.fbp-admin-header h1 {
    color: #2d5be3;
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: 800;
}

.fbp-admin-header p {
    color: #666;
    margin: 0;
    font-size: 1.2em;
}

.fbp-admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.fbp-stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #2d5be3;
    transition: transform 0.3s ease;
}

.fbp-stat-card:hover {
    transform: translateY(-5px);
}

.fbp-stat-icon {
    font-size: 2.2em;
    opacity: 0.8;
}

.fbp-stat-info h3 {
    margin: 0;
    font-size: 2.2em;
    color: #2d5be3;
    font-weight: bold;
}

.fbp-stat-info p {
    margin: 5px 0 0 0;
    color: #666;
    font-weight: 500;
}

.fbp-admin-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.fbp-bookings-table-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fbp-bookings-table-container h2 {
    margin: 0 0 25px 0;
    color: #333;
    border-bottom: 3px solid #2d5be3;
    padding-bottom: 12px;
    font-size: 1.6em;
}

.fbp-table-responsive {
    overflow-x: auto;
}

.fbp-bookings-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.fbp-bookings-table th {
    background: #2d5be3;
    color: white;
    padding: 15px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.fbp-bookings-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.fbp-bookings-table tr:hover {
    background: #f8f9fa;
}

.fbp-booking-id {
    font-weight: bold;
    color: #2d5be3;
    font-size: 14px;
}

.fbp-customer-info strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.fbp-customer-info small {
    color: #666;
    font-size: 0.85em;
}

.fbp-contact-info {
    font-size: 0.9em;
    color: #555;
}

.fbp-service-type {
    font-weight: 500;
    color: #333;
}

.fbp-booking-datetime {
    font-weight: 500;
    color: #333;
}

.fbp-booking-datetime small {
    color: #666;
    font-size: 0.85em;
}

.fbp-status-select {
    padding: 8px 12px;
    border: 2px solid #e8ecf1;
    border-radius: 6px;
    font-size: 0.9em;
    background: white;
    cursor: pointer;
    min-width: 120px;
    transition: border-color 0.3s ease;
}

.fbp-status-select:focus {
    outline: none;
    border-color: #2d5be3;
}

.fbp-booking-actions {
    white-space: nowrap;
}

.fbp-action-btn {
    background: none;
    border: 2px solid #e8ecf1;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 5px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.fbp-action-btn:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}

.fbp-view-btn:hover {
    border-color: #2d5be3;
    color: #2d5be3;
}

.fbp-delete-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.fbp-admin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fbp-sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fbp-sidebar-card h3 {
    margin: 0 0 20px 0;
    color: #333;
    border-bottom: 2px solid #2d5be3;
    padding-bottom: 10px;
    font-size: 1.3em;
}

.fbp-refresh-btn,
.fbp-export-btn {
    width: 100%;
    padding: 14px;
    margin-bottom: 10px;
    background: #2d5be3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    font-size: 14px;
}

.fbp-refresh-btn:hover,
.fbp-export-btn:hover {
    background: #1e4ac5;
}

.fbp-no-bookings {
    text-align: center;
    padding: 60px 40px;
    color: #666;
    font-size: 16px;
}

.fbp-admin-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #856404;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fbp-booking-content {
        grid-template-columns: 1fr;
    }
    
    .fbp-booking-info-section {
        border-left: none;
        border-top: 1px solid #e8ecf1;
    }
    
    .fbp-admin-content {
        grid-template-columns: 1fr;
    }
    
    .fbp-admin-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .floating-booking-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .booking-popup {
        margin: 10px;
        max-height: 85vh;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .fbp-booking-page {
        padding: 20px 15px;
    }
    
    .fbp-booking-header {
        padding: 40px 25px;
    }
    
    .fbp-booking-header h1 {
        font-size: 2.2em;
    }
    
    .fbp-booking-form-section,
    .fbp-booking-info-section {
        padding: 35px 25px;
    }
    
    .fbp-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .fbp-form-group {
        min-width: 100%;
    }
    
    .fbp-admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fbp-bookings-table {
        font-size: 0.9em;
    }
    
    .fbp-bookings-table th,
    .fbp-bookings-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .fbp-admin-stats {
        grid-template-columns: 1fr;
    }
    
    .fbp-admin-page {
        padding: 20px 15px;
    }
    
    .fbp-admin-header {
        padding: 30px 20px;
    }
    
    .fbp-bookings-table-container {
        padding: 20px 15px;
    }
    
    .fbp-booking-header h1 {
        font-size: 1.8em;
    }
    
    .fbp-booking-header p {
        font-size: 1em;
    }
}



/* Admin Login Styles */
.fbp-admin-login-page {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fbp-login-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
}

.fbp-login-header {
    text-align: center;
    margin-bottom: 40px;
}

.fbp-login-header h1 {
    color: #2d5be3;
    margin: 0 0 10px 0;
    font-size: 2.2em;
    font-weight: 700;
}

.fbp-login-header p {
    color: #666;
    margin: 0;
    font-size: 1.1em;
}

.fbp-login-form {
    margin-bottom: 25px;
}

.fbp-login-form .fbp-form-group {
    margin-bottom: 20px;
}

.fbp-login-form .fbp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.fbp-login-form .fbp-form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e8ecf1;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.fbp-login-form .fbp-form-control:focus {
    border-color: #2d5be3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 91, 227, 0.1);
}

.fbp-login-form .fbp-form-control::placeholder {
    color: #a0a4a8;
}

.fbp-login-btn {
    background: linear-gradient(135deg, #2d5be3 0%, #1e4ac5 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fbp-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 91, 227, 0.4);
}

.fbp-login-btn:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.fbp-login-error {
    background: #fee;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.fbp-login-error p {
    margin: 0;
    color: #721c24;
    font-weight: 500;
}

.fbp-login-note {
    background: #f8f9fa;
    border: 2px dashed #e8ecf1;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.fbp-login-note p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.fbp-login-note code {
    background: #2d5be3;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Admin Header with Logout */
.fbp-admin-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.fbp-logout-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.fbp-logout-btn:hover {
    background: #c82333;
}

/* Responsive Login */
@media (max-width: 768px) {
    .fbp-login-container {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .fbp-admin-header-top {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .fbp-logout-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .fbp-admin-login-page {
        padding: 20px 15px;
    }
    
    .fbp-login-container {
        padding: 25px 20px;
    }
    
    .fbp-login-header h1 {
        font-size: 1.8em;
    }
}