body{
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url("https://media.discordapp.net/attachments/1038090076879597578/1038418521828368465/unknown.png");
  background-size: cover; 
  background-position: center;
  background-attachment: fixed;

}


.button{
	font-weight: 800;
	color: white;
	border-radius: 15px;
  	padding: 5px 24px;
  	background: #7289da;
  	border: none;
 
}

.button:hover{
  background: linear-gradient(90deg, #5865f2, #ae3484);
  color: white;
}



.container2{
  width: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;

}


form{
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 2vh 4vh;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  
}


form h3{
  color: #555;
  font-weight: 800;
  margin-bottom: 20px;
}

form input, form textarea{

  border:0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background: #f5f5f5;
  font-size: 16px;
  
}

form button{
  padding: 15px;
  background: linear-gradient(to right, #fc5c7d, #6a82fb);
  color: #fff;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto 0;
  border-radius: 30px;
  transition: 3ms;
  
}

form button:hover{
  background: linear-gradient(to right, #6a82fb, #fc5c7d)
}

