/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #6DD5FA 0%, #2980B9 100%);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.weatherContainer {
    background: #5C5CFF;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    width: 350px;
    text-align: center;
}

.weatherContainer h1 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 1.2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}

.inputRow {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.inputRow input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 1rem;
    transition: box-shadow 0.3s ease;
}

.inputRow input[type="text"]:focus {
    box-shadow: 0 0 8px 2px #4facfe;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#btn {
    background: #4facfe;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#btn:hover {
    background: #00f2fe;
    transform: scale(1.05);
}

#resultContainer {
    font-size: 1.1rem;
    min-height: 60px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}




