* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    text-align: center;
    margin: 20px;
    margin-bottom: 20px;
}

body {
    background-image: url('./images/bk2.jpg');
    /* background-color: rgb(61, 60, 59); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    min-height: 100vh;
}

.container {
    /* border: 5px solid rgb(46, 44, 42); */
    width: 390px;
    
    /* background: rgba(255, 255, 255, 0.15); */

    background: rgba(0, 0, 0, 0);   /* Transparent white */
    backdrop-filter: blur(12px);             /* Glass blur */
    -webkit-backdrop-filter: blur(12px);     /* For Safari */
    /* background: linear-gradient(45deg, rgb(0, 128, 28), rgb(193, 255, 192)); */
    /* background-color: linear-gradient(yellow,green,blue); */
    border-radius: 20px;
    margin-top: 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    text-align: center;
    padding-bottom: 30px;
    

}

.search {
    width: 100%;
    display: flex;
    justify-content: center;
    
}

.search input {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(245, 242, 239, 0.25);

    width: 250px;
    /* border: 1px solid rgb(0, 0, 0); */
    /* outline: none; */
    padding: 7px;
    margin: 0px;
    border-radius: 10px;
    /* background: none; */
    cursor: pointer;
    color: azure;
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.input-search:hover {
    background: rgba(17, 30, 19, 0.55);
    border: 3px solid rgba(1, 1, 1, 0.2);
    transform: scale(1.02);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

.search input::placeholder {
    font-size: 15px;
    /* font-weight: bold; */
    color: rgb(251, 250, 254);
    text-align: center;
}

.search button {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(245, 242, 239, 0.25);
    
    outline: none;
    margin-left: 10px;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}

.searchBtn:hover {
    background: rgba(80, 160, 239, 0.5);
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(1, 1, 1, 0.2);
}

.weather-body {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: aliceblue;
    text-align: center;
    margin-top: 10px;
}

.weather-details {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 10px;
}

.weather-box h1 {
    padding: 0;
    margin: 0;
} 

.humidity,.wind {
    display: flex;
    justify-content: center;
}

.humidity {
    margin-left: 30px;
    margin-right: 10px;
}

.wind {
    margin-right: 30px;
}

.text {
    margin-left: 10px;
}

/* input:focus + label {
    transform: translateY(-20px);
    color: rgb(33, 89, 210);
}

input:focus {
    outline-color: rgb(84, 194, 237);
} */


#humidity-detail {
    font-size: 20px;
    font-weight: bold;
}

#wind-detail {
    font-size: 20px;
    font-weight: bold;
}

p {
    font-size: 15px;
}

.temperature {
    font-size: 40px;
}

.location-not-found {
    margin-top: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.location-not-found h1 {
    font-size: 20px;
    color: #6b6b6b;
    margin-block-end: 15px;
}

.location-not-found img {
    width: 80%;
}

.creator {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    color: white;
    opacity: 0.7;
    
}