.mobile-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    text-align: center;
}

body.open-mobile-search .mobile-search {
    display: flex;
}

.mobile-search-content {
    background: transparent;
    padding: 0;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: scale(0);
    transition: all 300ms ease;
}

body.open-mobile-search .mobile-search-content {
    transform: scale(1);
}

.search-title {
    font-size: 43px;
    color: white;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.search-group {
    margin-bottom: 15px;
}

.input-text {
    flex: 1;
    padding: 8px 20px;
    font-size: 18px;
    color: #fff;
    background: rgba(25, 109, 99, 0.1);
    border: 1px solid #196d63;
    border-radius: 30px;
    outline: none;
    transition:
        border-color 0.3s,
        background 0.3s;
    text-align: center;
    width: 65%;
}

.input-text::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-text:focus {
    border-color: #fff;
    background: transparent;
}

.btn-submit {
    padding: 10px 30px;
    background: #196d63;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #144f49;
}

.alert-info {
    background-color: rgba(25, 109, 99, 0.1);
    border-left: 5px solid #196d63;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    color: black;
}
