* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
:root {
    font-size: 10px;
    --main-color: #fff;
    --accent-color: linear-gradient(135deg, #0f172a, #1e293b);
    --error-red: #fc1202;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
body, html {
  margin: 0;
  
  background: var(--accent-color);
}

.container {
    background: var(--accent-color);
    min-height: 100dvh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
}
header.hero-section {
    background-color: #000;
    text-align: center;
    color: var(--main-color);
    padding: 4rem 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.hero-section h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.6rem;
    font-weight: 650;
}
.logo {
    color: yellow;
    font-size: 3rem;
    font-weight: 800;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    margin-left: 40px;
}
form {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search {
    flex: 1;   
    width: 100%;
    max-width: 700px;
    min-height: 550px;
    border-radius: 2.5rem;
    background-color: var(--main-color);
    display: flex;
    padding: 2rem;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    gap: 5rem;
}
h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}
.label {
    font-weight: 500;
    font-size: 2rem;
}
.label svg {
    color: rgb(242, 38, 38);
    position: absolute;
    margin-left: 5px;
    opacity: 0.8;
}
span {
    opacity: 0.8;
}
.input-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}
.search input {
    width: 100%;
    border: 2px solid #1e293b;
    padding: 1rem;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 500;
}
.search input:focus {
    outline: none;
    border: 2px solid #0f172a;
    box-shadow: var(--shadow);
}
.search-btn {
    padding: 1rem 8rem;
    background-color: #1e293b;
    color: var(--main-color);
    border: none;
    font-weight: 600;
    border-radius: 8rem;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.1s ease;
}
.search-btn:hover {
    transform: scale(1.02);
    /* color: var(--accent-color);
    background-color: var(--main-color);
    border: 2px solid var(--accent-color); */
    opacity: 0.9;
    box-shadow: var(--shadow);
}
.result-field {
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    margin-top: 5rem;
    gap: 10px;
    flex-wrap: wrap;
}
h3,
.notfound {
    color: var(--error-red);
    font-size: 1.7rem;
    font-weight: 600;
}

p {
    font-size: 1.7rem;
    font-weight: 500;
}
a {
    color: #1b4b92;
    text-decoration: none;
}
a:hover {
    opacity: 0.9;
}

@media only screen and (max-width: 850px) {
    :root {
        font-size: 9px;
    }
     header.hero-section {
    justify-content: center;
}
     header.hero-section h1 {
        display: none;
        font-size: 2rem;
     }
         .logo {
        text-align: center;
        font-size: 3rem;
        margin: 0;
    }
        form {
        width: 95%;
    } 
}