@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

form{
	width: 100%;
	max-width: 500px;
}

 input[type="text"],
 input[type="email"],
 input[type="tel"]{
	width: 100%;
	max-width: 500px;
	margin-top: 10px;
	border-radius: 5px;
	padding: 5px;
	border: 1px solid #9EA3AE;
}

input[type="checkbox"]{
	margin-top: 10px;
}

label{
	font-weight: normal;
	font-size: 15px;
}

.boton_enviar{
	padding: 15px 50px;
	border-radius: 50px;
	background-color: #000000;
	border: none;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}

.text_input{
	font-size: 14px;
	font-weight: 500;
}

input:focus {
    outline: none;
	border: 1.5px solid #00AAA6;
  }



