.ls-widget-container-a90bd7f2 {
    font-family: inherit;
    width: 100%;
}
.ls-tabs {
    display: flex;
}
.ls-tab {
    background: #001f3f;
    color: #fff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}
.ls-tab.active {
    background: #002b5e;
}
.ls-form-row {
    display: flex;
    flex-wrap: wrap;
    background: transparent;
    align-items: stretch; /* Ensure all children stretch to match height */
}
.ls-field-group {
    flex: 1;
    min-width: 150px;
    background: #fff;
    display: flex;
    align-items: center;
}
.ls-field-group input[type="text"],
.ls-field-group select {
    width: 100%;
    padding: 18px 15px;
    border: none;
    outline: none;
    background: transparent;
}
.ls-toggle-group {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #fff;
}
.ls-toggle-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ls-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
.ls-switch input.ls-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.ls-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e1;
    border-radius: 24px;
    transition: .4s;
}
.ls-switch-slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
input.ls-toggle-input:checked + .ls-switch-slider {
    background-color: #001f3f;
}
input.ls-toggle-input:checked + .ls-switch-slider:before {
    transform: translateX(22px);
}
.ls-submit-group {
    height: auto;
    align-self: stretch;
    display: flex; /* Critical for inner button alignment */
}
.ls-submit-btn {
    background: #002b5e;
    color: #fff;
    border: none;
    padding: 0 30px;
    height: 100%; /* Force full height of flex container */
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}