*{ margin: 0;
   padding: 0;
}

body{
   background-image: url(./images/fundo.png);
   background-size: cover;
   background-repeat: no-repeat;
}

.conteiner{
   max-width: 1000px;
   margin: auto;
   display: flex;
   flex-direction: column; 
   align-items: center; 
   height: 100vh;
}

header{
   color: white;
   text-align: center;
   margin-bottom: 10px;
}

.title{
   margin-top: 25px;
   font-size: 27px;
   font-weight: 600;
   font-family:'Courier New', Courier, monospace
}

section{
   max-width: 400px;
   padding: 20px;
   
}

input{
   margin-bottom: 10px;
   width: 100%;
   box-sizing: border-box;
   padding: 10px;
   border: 1px solid #000000;
}

input[type="submit"]{
   margin-top: 15px;
   background-color: white; 
   color: black;
   font-size: 15px;
   font-weight: 600;
}

input[type="submit"]:hover {
   background-color: #1900ff; 
   color: white; 
   cursor: pointer;
}