@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    background-image: url(assets/assets/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    position: relative;
    color: #fff;
}
body::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 249, 196, 0.2);
    backdrop-filter: blur(15px);
    z-index: 1;
}
.container{
    position: relative;
    z-index: 2;
    width: 300px;
    height: 480px;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(to top, rgb(0, 0, 0, 0.15), rgb(255, 255, 255, 0.15));
    backdrop-filter: blur(15px);
}
.container .header{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}
.container .header .form{
    width: 100%;
}
.container .header .form input{
    width: 100%;
    border: none;
    outline: none;
    padding: 7px;
    color: #fff;
    border: 3px solid transparent;
    background-color: rgb(0, 0, 0, 0.15);
    border-radius: 20px;
}
.container .header .form input:focus{
    border-color: rgba(0, 0, 0, 0.336);
}
.container .header .form input::placeholder{
    color: #ffffffbd;
    font-size: 13px;
}
.container .header > i{
    position: absolute;
    right: 10px;
    color: #fff;
    font-size: 13px;
}
.section-found{
    display: none;
}
.section-found .always-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.section-found .always-section .location{
    display: flex;
    align-items: center;
}
.section-found .always-section .location .loc{
    margin-left: 10px;
    font-weight: 600;
    font-size: 18px;
}
.section-found .always-section .date-txt{
    font-size: 14px;
}
.section-found  .summary img{
    width: 120px;
}
.section-found  .summary .temperature .weather{
    font-size: 18px;
}
.section-found .always-section .humidity-wind{
    display: flex;
    align-items: center;
}
.section-found .always-section .humidity-wind i{
    font-size: 22px;
    margin-right: 10px;
}
.section-found .always-section .humidity-wind .degree-info p{
    font-size: 13px;
}
.section-found .always-section .humidity-wind .degree-info h5{
    font-weight: 600;
}
.forecast-section{
    margin-top: 30px;
    display: flex;       
    gap: 20px;             
    overflow-x: auto;  
    cursor: pointer;       
}
.forecast-section::-webkit-scrollbar{
    height: 6px;             
}
.forecast-section::-webkit-scrollbar-track{
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
}
.forecast-section::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,0.3);
    border-radius: 99px;
}
.forecast-section .forecast{
    text-align: center;
    padding: 15px; 
    border-radius: 10px;
    width: 100%;
    background-color: #647d8979;
    margin-bottom: 10px;
}
.forecast-section .forecast > div{
    font-size: 13px;
    white-space: nowrap;
}
.forecast-section .forecast img{
    width: 40px;
}
.forecast-section .forecast > .fore-degree{
    white-space: nowrap;
}
.section-search {
    text-align: center;
    margin-top: 50px;
    display: block;
}
.section-search img{
    width: 200px;
}
.section-search h1{
    margin: 10px 0 15px;
}
.not-found-search{
    text-align: center;
    margin-top: 60px;
    display: none;
}
.not-found-search img{
    width: 250px;
}
.not-found-search h1{
    margin: 10px 0 15px;
}