.search-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   

    background: rgba(255, 255, 255, 1);
    height: 70px;
    width: 650px;
    padding: 10px;
    border-radius: 40px;
    border: 2px solid #447ce7;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: "Inter",sans-serif;
    font-weight: bolder;
}

.search-text{
    background: none;
    border: 0;
    outline: 1px;
    outline-color: #447ce7;

    font-size: 16px;
    padding-left: 10px;
    font-weight: bolder;
    color: #132d76;

    width: 570px;
}



.search-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    background: #447ce7;
}

.search-btn {
    transition: background-color 0.5s ease; 
}

.search-btn:hover {
    background-color: #006ABA; 
}

.search-text::-webkit-input-placeholder { 
    color: #99b2e1;
    font-family: "Inter",sans-serif;
    font-weight: bold;
}

.search-text::-moz-placeholder { 
    color: #99b2e1;
    font-family: "Inter",sans-serif;
    font-weight: bold;
}

.search-text::placeholder { 
    color: #99b2e1;
    font-family: "Inter",sans-serif;
    font-weight: bold;
}

@media screen and (max-width: 1200px){
    .search-box{
        width: 450px;
    }

    .search-text{
        width: 370px;
    }
}

@media screen and (max-width: 769px){
    .search-box{
        width: 350px;
        height: 60px;
    }

    .search-text{
        width: 270px;
    }

    .search-btn{
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 600px){
    .search-box{
        width: 250px;
        height: 50px;
    }

    .search-text{
        width: 170px;
    }

    .search-btn{
        width: 40px;
        height: 40px;
    }

    .loupe-white{
        width: 22px;
        height: 22px;
    }
}
