*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    
    background: url('https://images.pexels.com/photos/186980/pexels-photo-186980.jpeg?cs=srgb&dl=pexels-tahir-shaw-50609-186980.jpg&fm=jpg');
}
 
h1{
    color: #fff;
    padding : 18px 0;
    text-align : center;
    font-size: 1.75rem;
    background: rgb(71, 71, 249);

}

.container{
    display: flex;
    gap: 35px;
    padding :30px; 
}

.weather-input{
    width:550px;
}

.weather-input input{
    width: 100%;
    height: 46px;
    outline: none;
    padding: 0 15px;
    margin: 10px 0 20px 0;
    font-size: 1.07rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.weather-input .separator{
    height: 1px;
    width: 100%;
    margin: 25px 0;
    background: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-input .separator::before{
    content: "or";
    color:#6C757D;
    font-size: 1.18ren;
    padding: 0 15px;
    margin-top: -4px;
    background: #E3F2FD;
}

.weather-input button{
 width: 100%;
 padding: 10px 0;
 cursor: pointer; 
 outline: none; 
 border: none;
 color: #fff;
 font-size: 1rem;
 border-radius: 4px;
 background:#5372F0;
}

.weather-input .location-btn{
    background: #6C757D;
}

.weather-data{
    width: 100%;
}

.current-weather{
    background: #5372F0;
    color: #fff;
    padding: 20px 70px 20px 20px;
    display: flex;
    border-radius: 5px;
    justify-content: space-between;


}

.current-weather h2{
    font-size: 1.7rem;
}

.weather-data h4{
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.current-weather .icon{
    text-align: center;
}

.current-weather .icon img{
    max-width: 120px;
    margin-top: -15px;

}

.current-weather .icon h4{
    margin-top: -10px;
    text-transform: capitalize;
}

.days-forecast h2{
    font-size: 1.5rem;
    margin: 20px 0;
}

.weather-cards{
    display: flex;
    gap: 20px;

}

.weather-cards .card{
    lifestyle:none;
    color:#fff;
    padding: 18px 16px;
    border-radius: 5px;
    background: #6C757D;
    width: cal (100%/5);
}

.weather-cards .card img{
    max-width: 70px;
    margin: 5px 0 -12px 0;
 }

 