/* Importación de fuentes de google fonts */ 
@import url(https://fonts.googleapis.com/css2?family=Antonio);


body{
  height: 100%; 
  font-family: 'Noto Sans', sans-serif;
  background-color: #cfaaaa; 
}


.contact_form{  
  width: 460px; 
  height: auto;
  margin: 30px auto;
  border-radius: 10px;  
  padding-top: 10px;
  padding-bottom: 10px;  
  background-color: #fbfbfb; 
  padding-left: 30px; 
}


input{
  background-color: #fbfbfb; 
  width: 408px; 
  height: 40px; 
  border-radius: 5px;  
  border-style: solid; 
  border-width: 1px; 
  border-color: #ab4493; 
  margin-top: 10px;  
  padding-left: 10px;
  margin-bottom: 10px; 
}


textarea{
  background-color: #fbfbfb; 
  width: 405px; 
  height: 150px; 
  border-radius: 5px;  
  border-style: solid; 
  border-width: 1px; 
  border-color: #ab4493; 
  margin-top: 10px;  
  padding-left: 10px;
  margin-bottom: 10px; 
  padding-top: 15px; 
}


label{
  display: block; 
  float: center;  
}


button{
  height: 45px; 
  padding-left: 5px;
  padding-right: 5px;   
  margin-bottom: 20px; 
  margin-top: 10px;   
  text-transform: uppercase;
  background-color: #ab2a33; 
  border-color: #ab2a33; 
  border-style: solid; 
  border-radius: 10px;  
  width: 420px;   
  cursor: pointer;
}


button p{
  color: #fff; 
}


span{
  color: #ab4493; 
}


.aviso{
  font-size: 13px;  
  color: #0e0e0e;  
}


h1{
  font-size: 39px;  
  text-align: letf; 
  padding-bottom: 0px; 
  color: #000000;
}


h3{
  font-size: 16px; 
  padding-bottom: 10px;
  color: #0e0e0e;   
}


p{
  font-size: 14px; 
  color: #0e0e0e; 
}


::-webkit-input-placeholder {
 color: #a8a8a8;
}


::-webkit-textarea-placeholder {
 color: #a8a8a8;
}


.formulario input:focus{
  outline:0;
  border: 1px solid #97d848;
}


.formulario textarea:focus{
  outline:0;
  border: 1px solid #97d848;
}


/* creado por javiniguez.com, Julio 2019 */

@media (max-width: 768px) {

  .contact_form {
		width: 260;
		height: auto;
		margin: 30px auto;
		border-radius: 10px;
		padding-top: 10px;
		padding-bottom: 10px;
		background-color: #fbfbfb;
		padding-left: 30px;
	  }

    input {
      background-color: #fbfbfb;
      width: 208px;
      height: 40px;
      border-radius: 5px;
      border-style: solid;
      border-width: 1px;
      border-color: #ab4493;
      margin-top: 10px;
      padding-left: 10px;
      margin-bottom: 10px;
    }

    textarea {
      background-color: #fbfbfb;
      width: 205px;
      height: 150px;
      border-radius: 5px;
      border-style: solid;
      border-width: 1px;
      border-color: #ab4493;
      margin-top: 10px;
      padding-left: 10px;
      margin-bottom: 10px;
      padding-top: 15px;
    }

    button {
      height: 45px;
      padding-left: 5px;
      padding-right: 5px;
      margin-bottom: 20px;
      margin-top: 10px;
      text-transform: uppercase;
      background-color: #ab2a33;
      border-color: #ab2a33;
      border-style: solid;
      border-radius: 10px;
      width: 220px;
      cursor: pointer;
    }

    .aviso {
      font-size: 13px;
      color: #0e0e0e;
      padding: -33px;
      margin: auto;
    }
}