/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f6ff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    margin-top: 30px;
    padding: 20px 25px;
    max-width: 420px;
    width: 95%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 51, 102, 0.1);
    text-align: center;
}

.logo {
    max-width: 100px;
    margin-bottom: 10px;
}

h2 {
    color: #003366;
    font-size: 20px;
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin: 8px 0 4px;
    color: #003366;
}

select, input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #cce0ff;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005fa3;
}

h3 {
    margin-top: 18px;
    color: #003366;
    font-size: 16px;
}

/* Ajustes responsivos reais */
@media (max-width: 480px) {
    .container {
        padding: 15px 18px;
        margin-top: 20px;
    }

    h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .logo {
        max-width: 90px;
    }

    select, input, button {
        font-size: 14px;
        padding: 8px;
    }
}
