*{
  margin: 0;
  padding: 0;
}
html{
  width: 100%;
  height: 100vh;
  background-image: url(./photos/pexels-vecislavas-popa-1643383.jpg) ;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.shadow{
  width: 100%;
  height: 100vh;
  background-color:rgba(225, 225, 225, 0.5) ;
}

form{
  width: 500px;
  height: 600px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.926);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 1px 1px 1px  rgba(0, 0, 0, 0.515);
  position: relative;
}

form > div{

margin: 10px;
position: relative;

}

form input{

  width: 400px;
  height: 30px;
  outline: none;
  border-radius: 10px;

  
}
form label{
margin: 10px;
  display: block;
  text-align: left;
}

form input::placeholder{
  padding: 15px;
}
.name{
  display: inline-block;

}
.name input{
  width: 200px;
  
}

form :not(.name) label{
  margin-left: 40px;
}

button{
  margin: 10px;
  width: 200px;
  height: 60px;
  background-color: rgba(225, 225, 225, 0.8);
  border: none;
  font-size: 20px;
  color: black;
  transition: background-color 0.3s ease;
}

button:hover{
  background-color:#33646b ;
color: white;
}

