/* Babylon Spa Booking - Public Styles */

:root {
    --bsb-primary-color: #123c1d;
    --bsb-secondary-color: #2d5a35;
    --bsb-accent-color: #4a8a5f;
    --bsb-light-bg: #f9f9f9;
    --bsb-border-color: #e0e0e0;
    --bsb-error-color: #d32f2f;
    --bsb-success-color: #388e3c;
    --bsb-white: #ffffff;
    --bsb-text-primary: #123c1d;
    --bsb-text-secondary: #666666;
    --bsb-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --bsb-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#babylon-spa-booking-root {
    font-family: inherit;
    color: var(--bsb-text-primary);
    line-height: 1.6;
}

#babylon-spa-booking-root *,
#babylon-spa-booking-root *::before,
#babylon-spa-booking-root *::after {
    box-sizing: border-box;
    font-family: inherit;
}

/* Container */
.bsb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    /* background-color: var(--bsb-white); */
}

/* Progress Steps */
.bsb-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.bsb-progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.bsb-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--bsb-border-color);
    z-index: 0;
}

.bsb-progress-step.active:not(:last-child)::after,
.bsb-progress-step.completed:not(:last-child)::after {
    background-color: #689f38;
}

.bsb-progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bsb-white);
    border: 2px solid var(--bsb-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.bsb-progress-step.active .bsb-progress-circle {
    border-color: #689f38;
    background-color: #689f38;
    color: var(--bsb-white);
}

.bsb-progress-step.completed .bsb-progress-circle {
    border-color: var(--bsb-primary-color);
    background-color: var(--bsb-primary-color);
    color: var(--bsb-white);
}

.bsb-progress-label {
    font-size: 14px;
    color: var(--bsb-white);
    font-weight: 500;
}

.bsb-progress-step.active .bsb-progress-label,
.bsb-progress-step.completed .bsb-progress-label {
    color: var(--bsb-white);
    font-weight: 600;
}

/* Form Styles */
.bsb-form-section {
    background-color: var(--bsb-white);
    border: 1px solid var(--bsb-border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--bsb-shadow);
}

.bsb-form-section h3 {
    color: var(--bsb-primary-color);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bsb-primary-color);
}

.bsb-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.bsb-form-row-single {
    grid-template-columns: 1fr;
}

.bsb-form-row-three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .bsb-form-row-three {
        grid-template-columns: 1fr;
    }
}

.bsb-form-group {
    display: flex;
    flex-direction: column;
}

.bsb-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--bsb-text-primary);
    font-size: 14px;
}

.bsb-form-group label .required {
    color: var(--bsb-error-color);
    margin-left: 2px;
}

.bsb-form-group input,
.bsb-form-group select {
    height: 44px;
    padding: 10px 15px;
    border: 1px solid var(--bsb-border-color) !important;
    border-radius: 16px !important;
    font-size: 14px;
    font-family: inherit;
    color: var(--bsb-text-primary);
    transition: all 0.3s ease;
    background-color: var(--bsb-white);
    line-height: 1.5;
}

.bsb-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.bsb-form-group input:focus,
.bsb-form-group select:focus {
    outline: none;
    border-color: var(--bsb-primary-color);
    box-shadow: 0 0 0 3px rgba(18, 60, 29, 0.1);
}

.bsb-form-group input:disabled,
.bsb-form-group select:disabled {
    background-color: var(--bsb-light-bg);
    cursor: not-allowed;
}

.bsb-form-group.error input,
.bsb-form-group.error select {
    border-color: var(--bsb-error-color);
}

.bsb-error-message {
    color: var(--bsb-error-color);
    font-size: 12px;
    margin-top: 5px;
}

/* Phone Input with Country Code */
.bsb-phone-input-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
}

.bsb-country-select-wrapper {
    position: relative;
    flex: 0 0 140px;
    min-width: 140px;
    height: 44px;
    border: 1px solid var(--bsb-border-color);
    border-radius: 16px;
    background-color: var(--bsb-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.bsb-country-select-wrapper:hover {
    border-color: var(--bsb-primary-color);
}

.bsb-country-select-wrapper.active,
.bsb-country-select-wrapper:focus-within {
    border-color: var(--bsb-primary-color);
    box-shadow: 0 0 0 3px rgba(18, 60, 29, 0.1);
}

.bsb-selected-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0.5px 1px rgba(0,0,0,0.15);
    margin-right: 8px;
}

.bsb-country-display {
    flex: 1;
    font-size: 14px;
    color: var(--bsb-text-primary);
    user-select: none;
}

.bsb-dropdown-arrow {
    font-size: 10px;
    color: var(--bsb-text-secondary);
    margin-left: 4px;
    transition: transform 0.2s ease;
}

/* Custom Dropdown */
.bsb-country-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bsb-white);
    border: 1px solid var(--bsb-border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bsb-country-search {
    padding: 8px;
    border-bottom: 1px solid var(--bsb-border-color);
}

.bsb-country-search input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--bsb-border-color);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.bsb-country-search input:focus {
    border-color: var(--bsb-primary-color);
}

.bsb-country-list {
    max-height: 250px;
    overflow-y: auto;
}

.bsb-country-list::-webkit-scrollbar {
    width: 6px;
}

.bsb-country-list::-webkit-scrollbar-track {
    background: var(--bsb-light-bg);
}

.bsb-country-list::-webkit-scrollbar-thumb {
    background: var(--bsb-border-color);
    border-radius: 3px;
}

.bsb-country-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.bsb-country-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 10px;
}

.bsb-country-item:hover {
    background-color: var(--bsb-light-bg);
}

.bsb-country-item.active {
    background-color: rgba(18, 60, 29, 0.1);
    font-weight: 600;
}

.bsb-country-item .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 0.5px 1px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.bsb-country-name {
    flex: 1;
    font-size: 13px;
    color: var(--bsb-text-primary);
}

.bsb-country-code {
    font-size: 13px;
    color: var(--bsb-text-secondary);
    font-weight: 500;
}

.bsb-country-select {
    display: none;
}

.bsb-phone-input {
    flex: 1;
    height: 44px;
    padding: 10px 15px;
    border: 1px solid var(--bsb-border-color) !important;
    border-radius: 16px !important;
    font-size: 14px;
    font-family: inherit;
    color: var(--bsb-text-primary);
    background-color: var(--bsb-white);
    transition: all 0.3s ease;
}

.bsb-phone-input:focus {
    outline: none;
    border-color: var(--bsb-primary-color) !important;
    box-shadow: 0 0 0 3px rgba(18, 60, 29, 0.1);
}

.bsb-form-group.error .bsb-country-select-wrapper,
.bsb-form-group.error .bsb-phone-input {
    border-color: var(--bsb-error-color) !important;
}

/* Flag icon styling for Step 2 confirmation */
.bsb-phone-with-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bsb-phone-with-flag .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 0.5px 1px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

/* Emoji Flag Support - Force color emoji rendering */
.bsb-phone-input-wrapper select,
.bsb-phone-input-wrapper option,
.bsb-info-value {
    font-feature-settings: "calt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Time Selector */
.bsb-time-input {
    cursor: pointer;
    background-color: var(--bsb-white);
}

.bsb-time-input:focus {
    cursor: pointer;
}

/* Time Picker Modal */
.bsb-time-picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bsb-time-picker-modal {
    background-color: var(--bsb-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bsb-time-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--bsb-border-color);
}

.bsb-time-picker-header h4 {
    margin: 0;
    color: var(--bsb-primary-color);
    font-size: 18px;
}

.bsb-time-picker-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--bsb-text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.bsb-time-picker-close:hover {
    background-color: var(--bsb-light-bg);
    color: var(--bsb-text-primary);
}

.bsb-time-picker-body {
    display: flex;
    padding: 20px;
    gap: 20px;
    overflow: hidden;
}

.bsb-time-picker-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bsb-time-picker-label {
    font-weight: 600;
    color: var(--bsb-text-primary);
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
}

.bsb-time-picker-list {
    border: 1px solid var(--bsb-border-color);
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--bsb-light-bg);
}

.bsb-time-picker-list::-webkit-scrollbar {
    width: 8px;
}

.bsb-time-picker-list::-webkit-scrollbar-track {
    background: var(--bsb-light-bg);
}

.bsb-time-picker-list::-webkit-scrollbar-thumb {
    background: var(--bsb-border-color);
    border-radius: 4px;
}

.bsb-time-picker-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.bsb-time-picker-item {
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid var(--bsb-border-color);
    transition: all 0.2s ease;
    background-color: var(--bsb-white);
    font-size: 16px;
}

.bsb-time-picker-item:last-child {
    border-bottom: none;
}

.bsb-time-picker-item:hover:not(.disabled) {
    background-color: var(--bsb-light-bg);
}

.bsb-time-picker-item.active {
    background-color: var(--bsb-primary-color);
    color: var(--bsb-white);
    font-weight: 600;
}

.bsb-time-picker-item.disabled {
    cursor: not-allowed !important;
    opacity: 0.4 !important;
    background-color: #f5f5f5 !important;
    color: #999 !important;
    text-decoration: line-through;
}

.bsb-time-picker-footer {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid var(--bsb-border-color);
}

.bsb-time-picker-footer .bsb-btn {
    flex: 1;
    padding: 12px;
}

/* Guest Services */
.bsb-guest-card {
    background-color: var(--bsb-white);
    border: 1px solid var(--bsb-border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.bsb-guest-card:hover {
    box-shadow: var(--bsb-shadow);
}

.bsb-guest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bsb-light-bg);
}

.bsb-guest-header h4 {
    color: var(--bsb-primary-color);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

/* Service Selector */
.bsb-service-selector {
    background-color: var(--bsb-light-bg);
    border: 1px solid var(--bsb-border-color);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 12px;
}

.bsb-service-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bsb-service-number {
    font-weight: 600;
    color: var(--bsb-text-primary);
    font-size: 14px;
}

.bsb-service-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--bsb-primary-color);
}

.bsb-btn-remove,
.bsb-btn-remove-service {
    background-color: var(--bsb-error-color);
    color: var(--bsb-white);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.bsb-btn-remove-service {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
}

.bsb-btn-remove:hover,
.bsb-btn-remove-service:hover {
    background-color: #c62828;
}

/* Add Service Button */
.bsb-btn-add-service {
    width: 100% !important;
    padding: 12px;
    background-color: var(--bsb-white) !important;
    border: 2px dashed var(--bsb-primary-color) !important;
    color: var(--bsb-primary-color) !important;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.bsb-btn-add-service:hover {
    background-color: var(--bsb-text-primary) !important;
    border-color: var(--bsb-primary-color) !important;
    color: var(--bsb-white) !important;
}

/* Add Guest Button */
.bsb-btn-add-guest {
    width: 100% !important;
    padding: 15px;
    background-color: var(--bsb-primary-color) !important;
    border: 2px solid var(--bsb-primary-color) !important;
    color: var(--bsb-white) !important;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.bsb-btn-add-guest:hover {
    background-color: var(--bsb-white) !important;
    border-color: var(--bsb-primary-color) !important;
    color: var(--bsb-primary-color) !important;
}

/* Navigation Buttons */
.bsb-form-actions {
    display: flex;
    justify-content: space-between;
    /* gap: 15px; */
    margin-top: 30px;
}

.bsb-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.bsb-btn-primary {
    width: 100% !important;
    background-color: #689f38 !important;
    color: var(--bsb-white) !important;
    border: 2px solid #689f38 !important;
}

.bsb-btn-primary:hover {
    background-color: var(--bsb-white) !important;
    color: var(--bsb-primary-color) !important;
    border-color: #689f38 !important;
}

.bsb-btn-primary:disabled {
    background-color: var(--bsb-border-color) !important;
    cursor: not-allowed;
}

.bsb-btn-secondary {
    background-color: var(--bsb-white) !important;
    color: var(--bsb-primary-color) !important;
    border: 2px solid var(--bsb-primary-color) !important;
}

.bsb-btn-secondary:hover {
    background-color: var(--bsb-primary-color) !important;
    color: var(--bsb-white) !important;
    border-color: var(--bsb-primary-color) !important;
}

/* Step 2 - Confirmation */
.bsb-confirmation {
    padding: 20px 0;
}

.bsb-confirmation-section {
    background-color: var(--bsb-light-bg);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.bsb-confirmation-section h4 {
    color: var(--bsb-primary-color);
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bsb-guest-services-summary {
    background-color: var(--bsb-white);
    border: 1px solid var(--bsb-border-color);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.bsb-guest-name-title {
    color: var(--bsb-primary-color);
    font-size: 15px;
    margin: 0 0 12px 0;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bsb-border-color);
}

.bsb-btn-edit {
    background-color: var(--bsb-primary-color) !important;
    color: var(--bsb-white) !important;
    border: 2px solid var(--bsb-primary-color) !important;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bsb-btn-edit:hover {
    background-color: var(--bsb-white) !important;
    color: var(--bsb-primary-color) !important;
    border-color: var(--bsb-primary-color) !important;
}

.bsb-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.bsb-info-item {
    display: flex;
    flex-direction: column;
}

.bsb-info-label {
    font-weight: 600;
    color: var(--bsb-text-secondary);
    font-size: 13px;
    margin-bottom: 5px;
}

.bsb-info-value {
    color: var(--bsb-text-primary);
    font-size: 15px;
}

.bsb-service-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--bsb-border-color);
    border-radius: 0;
    padding: 10px 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bsb-service-item:last-child {
    border-bottom: none;
}

.bsb-service-item-name {
    font-weight: 500;
    color: var(--bsb-text-primary);
    margin-bottom: 0;
    font-size: 14px;
}

.bsb-service-item-guest {
    font-size: 13px;
    color: var(--bsb-text-secondary);
}

.bsb-service-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--bsb-primary-color);
    white-space: nowrap;
}

.bsb-total {
    background-color: var(--bsb-primary-color);
    color: var(--bsb-white);
    border-radius: 8px;
    padding: 20px 25px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bsb-total-label {
    font-size: 20px;
    font-weight: 600;
}

.bsb-total-amount {
    font-size: 28px;
    font-weight: bold;
}

/* Step 3 - Success */
.bsb-success {
    text-align: center;
    padding: 60px 20px;
}

.bsb-success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bsb-success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--bsb-white);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.bsb-success h2 {
    color: var(--bsb-white);
    font-size: 28px;
    margin-bottom: 15px;
}

.bsb-success p {
    color: var(--bsb-white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bsb-btn-home {
    display: inline-block;
    padding: 15px 50px;
    background-color: var(--bsb-white);
    color: var(--bsb-primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bsb-btn-home:hover {
    background-color: var(--bsb-secondary-color);
    box-shadow: var(--bsb-shadow-hover);
}

/* Loading State */
.bsb-loading {
    text-align: center;
    padding: 40px;
}

.bsb-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bsb-border-color);
    border-top-color: var(--bsb-primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .bsb-container {
        padding: 20px 10px;
    }

    .bsb-form-section {
        padding: 20px 15px;
    }

    .bsb-form-row {
        grid-template-columns: 1fr;
    }

    .bsb-progress {
        padding: 0 10px;
    }

    .bsb-progress-label {
        font-size: 12px;
    }

    .bsb-form-actions {
        flex-direction: column;
    }

    .bsb-btn {
        width: 100%;
    }

    .bsb-total {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .bsb-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bsb-progress-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .bsb-progress-step:not(:last-child)::after {
        top: 15px;
    }

    .bsb-service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
@media (max-width: 450px) {
    .bsb-form-actions.bsb-form-actions-step2 {
        gap: 15px;
    }
}