/* Global Styles */
body {
    font-family: "Poppins", Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to right, #c9d6ff, #e2e2e2); /* Light gradient background */
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container Styling */
.container {
    margin-top: 50px;
    padding: 20px;
}

/* Heading */
h1 {
    font-size: 36px;
    color: #007bff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Weather Icons */
.weather-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

/* Form Styling */
form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Input Box */
input {
    padding: 12px;
    width: 280px;
    border: 2px solid #007bff;
    border-radius: 20px;
    font-size: 16px;
    text-align: center;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #ff9800;
    box-shadow: 0px 0px 10px rgba(255, 152, 0, 0.5);
}

/* Button */
button {
    padding: 12px 20px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ff9800;
    box-shadow: 0px 0px 10px rgba(255, 152, 0, 0.8);
}

/* Weather Info Box */
.weather-info {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-align: center;
}

.weather-info:hover {
    transform: scale(1.05);
}

/* Weather Icon */
.weather-info img {
    width: 100px;
}

/* Error Message */
.error {
    color: red;
    font-size: 18px;
    margin-top: 10px;
}
