@media only screen and (max-width: 767px){
  .formulario {
    margin: 0 auto;
    width: 100px;
    padding: 20px 20px;
  }
}


.formulario{
  margin: 0 auto;
	width: 350px;
	background-image: linear-gradient(120deg, #3498db, #8e44ad);
	height: 580px;
	padding: 40px 25px;
	border-radius: 10px;
	transform: translate(0%, 0%);
	box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.2);
} 

.formulario h1{
	text-align: center;
	margin-bottom: 50px;
	color: white;
	font-weight: 650;
}

.box-input{
	border-bottom: 2px solid white;
	position: relative;
	margin: 40px 0;
}

.box-input input{
	font-size: 14px;
	color: white;
	border: none;
	width: 100%;
	outline: none;
	background: none;
	padding: 0 3px;
	height: 40px;
}

.box-input span::before{
	content: attr(data-placeholder);
	position: absolute;
	top: 50%;
	left: 5px;
	color: white;
	transform: translateY(-50%);
	z-index: -1;
	transition: .5s;
}

.box-input span::after{
	content: '';
	position: absolute;
	width: 0%;
	height: 2px;
	transition: .5s;
}

.focus + span::before{
	top: -5px;
}

.focus + span::after{
	width: 100%;
}

.boton{
	display: block;
	width: 100%;
	height: 50px;
	background-color: #48bb78;
	border: solid 2px #48bb78;
	color: #fff;
	border-radius: 5px;
	font-weight: 600;
	font-size: 18px;
	box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
}

.boton:hover{
	background-color: #2F855A;
	border: solid 2px #2F855A;
  transition: .5s;
  cursor: pointer;
}

.formulario p{
  text-align: left;
  padding: 0px;
  color: white;
  margin: 2rem 5px;
}

.formulario select{
  margin-top: 10px;
  width: 100%;
  padding: 5px;
  background: transparent;
  color: rgb(77, 226, 122);
  font-weight: bold;
  border: none
}

.formulario select:focus{ 
  outline: none;
}

.option::after{
  content:"\025be";
     display:table-cell;
     text-align:center;
     padding-top:7px;
     width:30px;
     height:30px;
     background-color:#1d1c1c;
     position:absolute;
     top:0;
     right:0px;
     pointer-events: none;
}
