* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.5s ease;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    width: 350px;
}

h1 {
    margin-bottom: 20px;
    color: white;
}

input {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 8px;
    outline: none;
}

button {
    padding: 10px 15px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background-color: white;
    color: #333;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background-color: #ddd;
}

#weatherResult {
    margin-top: 20px;
    color: white;
}