.search-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 1.5rem;
    max-width: 900px;
    width: 100%;
}
.search-form {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    width: 100%;
    border-radius: 0;
}

.tab-buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px;
    border-bottom: 1px solid #f2f2f2;
}

.tab-btn {
    padding: 7px 18px;
    border: 1px solid transparent;
    background-color: transparent;
    cursor: pointer;
    font-family: "Inter", serif;
    font-size: 12px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    transition: background 0.3s;
}

.tab-btn.active {
    background: var(--yellow-color);
    color: var(--brown-color);
    font-weight: 600;
}
.tab-btn .back,
.tab-btn .front {
    width: 18px;
}
.tab-btn .back {
    display: none;
}
.tab-btn:hover {
    background: var(--yellow-color);
    color: var(--brown-color);
}
.tab-btn.active .front,
.tab-btn:hover .front {
    display: none;
}
.tab-btn.active .back,
.tab-btn:hover .back {
    display: block;
}

.tab-content {
    padding: 10px 8px;
}
.tab-content .name {
    display: none;
}

.tab-panel {
    display: none;
    flex-direction: column;
}

.tab-panel.active {
    display: flex;
}

.sub-tab-btn {
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 7px 25px;
    background: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 5px;
    cursor: pointer;
    font-family: "jost", serif;
    font-size: 14px;
    border-radius: 35px;
    transition: 0.3s ease;
    font-weight: 500;
}

.sub-tab-btn.active {
    background: var(--white-color);
    color: var(--blue-color);
    border-color: var(--white-color);
    font-weight: 500;
}

.sub-tab-btn:hover {
    background: var(--white-color);
    color: var(--blue-color);
}

.sub-tab-panel {
    display: none;
}

.sub-tab-panel.active {
    display: block;
}
.form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.column {
    flex: 1 1 calc(25% - 10px);
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s;
}
.column input {
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    font-family: "jost", serif;
    padding: 7px 10px;
}
.column input::placeholder {
    color: var(--input-placeholder-color);
}
.column input:focus {
    box-shadow: none;
    border: 1px solid var(--blue-color);
}
.column:last-child {
    flex: 1;
}
.form .btn {
    padding: 8px 39px;
    font-weight: 500;
    border-radius: 35px;
}
@media (max-width: 1200px) {
    .column {
        flex: 1 1 calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {
    .column {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .column {
        flex: 1 1 100%;
    }
}
.input-effect {
    position: relative;
    width: 100%;
}

.effect-17 {
    width: 100%;
    padding: 15px 10px 9px !important;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.effect-17 ~ label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #212529;
    transition: all 0.3s ease;
    pointer-events: none; /* Prevent interference with input focus */
}

.effect-17:focus ~ label,
.has-content.effect-17 ~ label {
    top: 12px;
    font-size: 10px;
    color: #3399ff;
}
/* .effect-17:focus,
.has-content {
    padding: 14px 10px 7px !important;
} */
