body{
    background-image: linear-gradient(80deg, #008cff, #033055);
    font-family: Arial, sans-serif;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo{
    height: 130px;
    width: 220px;
}
h1{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #0281bc;
    font-size: 18px;
    text-shadow: 2px 2px 4px #00000080;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding: 15px;
}

section{
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 20px;
    padding-bottom: 0px ;
    background-color: white;
    width: 320px;
    height: 400px;
    border-radius: 15px;
}
input{
    margin: 5px;
    padding: 10px;
    width: 78%;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Remove setas do input */
/* IE 10+ */
input[type="number"]::-ms-clear,
input[type="number"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* IE 11+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    input[type="number"]::-ms-clear,
    input[type="number"]::-ms-reveal {
        display: none;
        width: 0;
        height: 0;
    }
}

/* Firefox */
input[type="number"] {
    appearance: none;
    -moz-appearance: textfield;
  }

/* Chrome, Safari, Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button[type=submit] {
    text-align: center;
    background-color: #4CAF50;
    color: white;
    width: 85%;
    margin-top: 15px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button[type=submit]:hover{
opacity: 0.8;
}

a:link{
color: black;
text-decoration:none;
font-size: 12px;
}
a:hover{
color: #008cff;
}

.rodape{
    font-size: 11px;
    background-image: linear-gradient(80deg, #008cff, #033055);
    margin: 0;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);
}
.texto-rodape{
    margin: 5px 0;
}