body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background: #ff4081;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background: #e91e63;
}

#weatherInfo {
    margin-top: 20px;
    font-size: 16px;
}

.footer {
    font-size: 14px;
    color: #ccc;
    margin-top: 20px;
}

.author {
    color: #ff4081;
    font-weight: bold;
}

i {
    margin-right: 5px;
}

/* Responsive Styling */
@media (max-width: 600px) {
    body {
        background-color: #fff;
        color: #333;
    }

    .container {
        width: 90%;
    }
}
