@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('images/background_img.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    position: relative;
    width: 400px;
    background: rgba(245, 245, 245, 0.1);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 20px;
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: height .6s ease;
}

.search-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-box i {
    font-size: 20px;
}

.search-box input {
    width: 100%;
    height: 55px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    outline: none;
    border-radius: 10px;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    padding: 0 48px 0 42px;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: #fff;
}

.search-box button {
    width: 40px;
    height: 55px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.weather-box {
    text-align: center;
    display: none;
}

.weather-box.active {
    display: block;
}

.weather-box img {
    width: 60%;
}

.weather-box .temperature {
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    margin: 20px 0 6px;
}

.weather-box .description {
    font-size: 22px;
    font-weight: 500;
}

.weather-details {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.weather-details .humidity,
.weather-details .wind {
    display: flex;
    align-items: center;
}

.weather-details i {
    font-size: 56px;
    margin-right: 10px;
}

.weather-details span {
    font-size: 22px;
    font-weight: 500;
}

.weather-details p {
    font-size: 14px;
    font-weight: 500;
}

.not-found {
    text-align: center;
    display: none;
}

.not-found.active {
    display: block;
}

.not-found img {
    width: 65%;
}

.not-found p {
    font-size: 22px;
    font-weight: 200;
    margin-top: 12px;
}
