/* Trigger Button */
.fso-trigger-f6246bd4 {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, fill 0.2s ease;
    line-height: 1;
}

/* Overlay */
.fso-overlay-f6246bd4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fso-overlay-f6246bd4.fso-active-f6246bd4 {
    opacity: 1;
}

/* Close Button */
.fso-close-f6246bd4 {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: opacity 0.2s ease;
}

.fso-close-f6246bd4:hover {
    opacity: 0.7;
}

/* Form */
.fso-form-f6246bd4 {
    width: 80%;
    max-width: 700px;
    text-align: center;
}

.fso-label-f6246bd4 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Input */
.fso-input-f6246bd4 {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    font-size: 36px;
    font-weight: 300;
    outline: none;
    text-align: center;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}

.fso-input-f6246bd4:focus {
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.fso-input-f6246bd4::-webkit-search-cancel-button,
.fso-input-f6246bd4::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* Responsive */
@media (max-width: 767px) {
    .fso-input-f6246bd4 {
        font-size: 24px;
        padding: 10px 0;
    }

    .fso-close-f6246bd4 {
        top: 20px;
        right: 20px;
    }

    .fso-form-f6246bd4 {
        width: 90%;
    }
}
