@import url("https://fonts.googleapis.com/css?family=Muli:300,400,700,900");

.form-tab .search-btn,
.form-tab .search-field .search-placeholder {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f3f9;
    height: 50vh;
    font-family: "Muli", Arial, sans-serif;
}

:root {
    --sw: 400px;
    --sh: 70px;
    --fs: 1.1em;
    --i1: 24px;
    --i2: 18px;
    --t: 14px;
    --l: 10px;
    --mt: 8px;
}

@media only screen and (max-width: 420px) {
    :root {
        --sw: 320px;
        --fs: 0.9em;
        --sh: 60px;
        --i1: 20px;
        --i2: 14px;
        --t: 12px;
        --l: 12px;
        --mt: 3px;
    }
}

.ul .li,
.ul-title,
.resoult-tab,
.form-tab .search-btn,
.form-container .form-tab,
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: var(--sw);
    height: calc(calc(var(--sh) * 4) + 10px);
    background: transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form-container {
    width: var(--sw);
    height: var(--sh);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 30px -10px #d5dbed;
    margin-bottom: 10px;
}

.form-container .form-tab {
    width: 95%;
    height: calc(var(--sh) - 20px);
}

.form-tab .search-field {
    width: 75%;
    height: calc(var(--sh) - 20px);
    background: transparent;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #eff4ff;
}

.form-tab .search-field .search-icon {
    position: absolute;
    top: var(--t);
    left: var(--l);
    z-index: 1;
    color: #6e80a5;
    opacity: 0.8;
    width: var(--i1);
    height: var(--i1);
}

.form-tab .search-field .search-placeholder {
    position: absolute;
    top: 0;
    left: 42px;
    z-index: 1;
    color: #6e80a5;
    opacity: 0.8;
    font-size: calc(var(--fs) / 1.1);
}

.form-tab .search-field form {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 3;
}

.form-tab .search-field form .text-field {
    width: 100%;
    height: 100%;
    background: transparent;
    font-size: var(--fs);
    color: #3f3f3f;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: 5px 5px 5px 43px;
    caret-color: #79a6ff;
    line-height: 2em;
}

.form-tab .search-btn {
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: calc(var(--fs) / 1.2);
    width: 25%;
    height: 40px;
    background: transparent;
    margin-top: 2px;
}

.form-tab .search-btn p {
    cursor: pointer;
    color: #222;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.form-container {
    margin-bottom: 2rem;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f3f3;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.text-field {
    flex: 1;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
}

.btn-primary {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
}

h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #111827;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    border: 1px solid #e5e7eb;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

li strong {
    font-size: 1.1rem;
    color: #111827;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    margin-top: 0.5rem;
    border-radius: 8px;
    max-width: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
