* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 380px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.6s ease;
}

h2 {
    margin-bottom: 14px;
    font-weight: 700;
}

.input-box {
    display: flex;
    gap: 10px;
    justify-content: center;
}

input {
    width: 70%;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #ddd;
    outline: none;
    font-size: 15px;
}

input:focus {
    border-color: #2a5298;
    transition: 0.3s;
}

button {
    padding: 10px 18px;
    background: #2a5298;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

button:hover {
    background: #1e3c72;
    transform: scale(1.05);
}

.weather-card {
    font-size: 19px;
    margin-top: 18px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 14px;
    line-height: 1.6;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
