html, body {
  background:
    url(mariambg.png),
    linear-gradient(to bottom, #ffffff, #FDB777,#FDA766,#FD9346);
  background-repeat: no-repeat;
  background-size: contain;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-content: center;
  text-align: center;
}

.tudo{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  
}

.tudo img{
  width: 10%;
  border: 4px solid gold;
  border-style:ridge;
}



.formulário{
  display: flex;
  flex-direction: column;
  margin-top: 2%;
  align-items: center;
}

main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  
}

main h1{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  text-align: center;

}

.formulário input{
  border: none;
  font-style: italic;
  border-bottom: 2px solid orangered;
  background: none;
 width: 20%;
 text-align: center;
 justify-content: center;
}

.formulário label{
  color: black;
  font-family:'Playfair Display', serif;
  font-weight: 600;
  font-size: 120%;
  margin-bottom: 1%;
}

.formulário button{
  margin-top: 2%;
}

main h2{
  font-family:'Playfair Display', serif;
  font-style: italic;
  font-size: 200%;
  margin-top: 2%;
}

.form button {
  width: 25%;
  padding: 12px;
  border: 1px solid black;
  border-radius: 25px;
  background: linear-gradient(90deg, orangered 0%, orange 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 80, 255, 0.3);
}


       