body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 350px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

input {
    width: 85%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
    transition: 0.3s ease-in-out;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input:focus {
    background: rgba(255, 255, 255, 0.3);
}

button {
    margin-top: 10px;
    padding: 12px 18px;
    background: #ff7f50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
}

button:hover {
    background: #ff4500;
}

#weatherResult {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 16px;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

footer {
    font-size: 14px;
    color: rgba(179, 197, 212, 0.7);
    position: absolute;
    bottom: 10px;
}
