* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top right, #1e3c72, #2a5298);
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
}

.weather-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.input-cidade {
    width: 100%;
    padding: 12px 16px;
    border-radius: 25px;
    border: none;
    outline: none;
    font-size: 16px;
    margin-bottom: 20px;
    background-color: #ffffff15;
    color: #fff;
}

.input-cidade::placeholder {
    color: #ccc;
}

.botao-buscar {
    width: 100%;
    padding: 12px;
    background-color: #00aaff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.botao-buscar:hover {
    background-color: #0090d0;
}

.img-buscar {
    width: 22px;
    filter: invert(100%);
}

.resultado {
    text-align: center;
}

.cidade {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.temperatura {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.previsao {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.img-previsao {
    width: 48px;
    height: 48px;
}

.texto-previsao {
    font-size: 18px;
    margin-left: 10px;
    text-transform: capitalize;
}

.umidade {
    font-size: 16px;
    color: #ffffffaa;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}