.form{
	text-align: center;
}
.name{
	border-radius: 20px;
}
.b{
	background-color: blue;
}
#center{
	margin: 6%;

}
.title{
	text-align: center;
	margin: 0%;

}
.card{
	background-color: #98FB98;

}
.fora{
	background-image: linear-gradient(90deg, #32CD32 0%, #1C1C1C 35%, #000000 100%); /*degrade do backgroound*/
}
.form-row{
	margin: 9px;
}
.form-group{
	margin: 9px;
}
.form-check{
	margin: 9px;
}
.img{
	margin: 20px;
	padding-left: 550px;
	width: 50%;
	display: box;
}
html, body {
  height: 100%;
}
.wrap {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#button {
	margin: 5px;
  min-width: 300px;
  min-height: 60px;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: green; /*letra dos botões*/
  background: #4FD1C5;
  background: linear-gradient(90deg, rgba(60,179,113) 0%, rgba(220,220,220) 100%); /*degrade dos botões*/
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(0,100,0.64); /*sombra dos botões*/
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }
#button::before {
content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid (0,128,0);
  box-shadow: 0 0 60px rgba(0,255,203,.64); /*Botão quando passa o mause*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}
#button:hover, .button:focus {
  color: (0,255,0);
  transform: translateY(-6px);
}
#button:hover::before, #button:focus::before {
  opacity: 1;
}
#button:hover::after, #button:focus::after {
  animation: none;
  display: none;
}
@keyframes ring {
  0% {
    width: 320px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}
/*fonte*/
.animate-charcter {
  color:white;
  font-size: 200%;
  animation-duration: 3s;
  animation-name: slidein;
  margin: 2%;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}