@charset "UTF-8";
/* CSS Document */
html {
  box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0%;
}

:root {
  --morado: #621e55;
  --azul: #021b79;
  --azul-claro: #0575e6;
  --rojo-claro: #dc281e;
  --rojo-fuerte: #f00000;
}
img {
  max-width: 100%;
}

html {
  min-height: 100%;
}
/*****************************************************/

/*-------------- Inicia estilos formulario-------------------------*/

.correo {
  font-size: 2rem;
  font-weight: bold;
  padding: 0% 3% 3% 0%;
}

.caja-formulario {
  background: white;
  padding: 2%;
  border-radius: 15px 15px 15px 15px;
  -moz-border-radius: 15px 15px 15px 15px;
  -webkit-border-radius: 15px 15px 15px 15px;
  border: 0px solid #000000;
}

/*---------------------------------------*/

.caja-formulario {
  width: 50vw;
}

.contenedor_formulario {
  display: flex;
  justify-content: center;
}

.camponom {
  width: 35vw;
  height: 3vw;
}
.tel {
  width: 35vw;
  height: 3vw;
}

.campomen {
  width: 35vw;
  height: 10vw;
}

fieldset {
  border: none;
}

.contenedor_enviar {
  display: flex;
  justify-content: flex-end;
}

/*------ Botón enviar ----------*/
.btnenviar {
  width: 6rem;
  height: 3rem;
  flex-direction: row-reverse;
  background-color: var(--rojo-fuerte);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font-size: 1.2em;
  display: flex;
}

.enviar {
  font-family: montserrat;
}

/*-------- Hover botón enviar------*/

.btnenviar {
  background-color: var(--morado);
  transition: background-color 0.5s;
}

.btnenviar:hover {
  background-color: gold;
}

/*----------------------------*/

/*------ Media queries Formulario-----*/

@media screen and (max-width: 600px) {
  .caja-formulario {
    width: 100vw;
  }
  .camponom {
    width: 70vw;
    height: 15vw;
  }
  .tel {
    width: 70vw;
    height: 15vw;
  }

  .campomen {
    width: 70vw;
    height: 30vw;
  }
  .contenedor_enviar {
    display: flex;
    justify-content: center;
  }
}
