body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    margin-top: -60px;
}

form {
    display: flex;
    justify-content: center;
   
    background-color: #1d5193;
    padding: 10px;
    border-radius: 0px;
    
}
label {
    width: 120px;
    text-align: right;
    font-weight: bold;
    margin-right: 10px;
     color: white;
    
}

select {
    width: 120px;
    text-align: left;
   
    margin-right: 10px;
}

input[type="text"],
input[type="number"] {
    
    padding: 5px;
    border: 1px solid black;
    border-radius: 0px;
    outline: none;
    margin-right: 10px;
    background-color: white;
    color: black;
    font-family: Arial, sans-serif;
}


select {
    width: 150px;
    padding: 7.5px;
    border: 1px solid black;
    border-radius: 0px;
    
     color: lightslategray;
    background-color: white;

    
}
button {
    padding: 7px;
    color: whitesmoke;
    background-color: black;
    align-items: center;
    border: black;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;

}


@media only screen and (max-width: 600px) {

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    margin-top: -80px;
}

    form {
        flex-direction: column;
        width: 100%; /* Ajuste conforme necessário */
        margin: 0 auto; /* Centraliza o formulário */
    }
    label {
        width: 100%;
        text-align: left;
        margin-top: 10px;
        margin-bottom: -20px;
    }
    
    button {
        width: 100%;
        margin-top: 20px;
        width: 100%; 
    }

    input {
        width: 100%;
        margin-top: 20px;
    }

    select {
        width: 100%;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 601px) {
    label {
        display: none;
    }
}