/*{
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*/
body
{
  background: #E2E3E2;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

#wrap  /*Contenedor del formulario*/
{
    width: 90%;
    /*max-width: 500px;*/
    margin: auto;
}

form  /*Forma de fondo de los boxes*/
{
  width: 80%;
  margin: 150px;
  height: 35%;
  padding: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 3px blue;
  border-top: 4px solid #3fb9e7;
  margin-left: 10%;
  margin-right: 10%;
  min-height: 35%;
  max-height: 50%;
}

/************************TextBox***********************************/
.TxtBox{
  border: 1px solid #3fb9e7;
  border-radius: 2px;
  /*padding: 16px;*/
  height:35px;
  width: 25vw;
  display: inline;
  padding: 2px;
  /*margin-bottom: 20px;*/
  font-family: "Roboto", Arial, sans-serif, helvetica;
  font-size: 1em;
  color: #3fb9e7;
  min-width: 120px
}
.TxtLeft{
  margin-left: 30px;
  float: left;

}
.TxtRight{

  margin-right: 30px;
  float: right;

}
.TxtBox:focus{
  border: 2px solid #3fb9e7;
  /*padding: 15px;*/
}

/****************************DIVS*************************/
.DIV_Titulo{
  /*background-color: red;*/
  margin-top: 5px;

  height: 40px;

  width:70vw;
}

.Div_Nombres{
  /*background-color: purple;*/
  margin-top: 5px;
  height: 50px;
  width:70vw;
}

.DIV_Email{
  /*background-color: green;*/
  margin-top: 5px;
  height: 50px;
  width:70vw;
}

.DIV_RFC{
  /*background-color: blue;*/
  margin-top: 5px;
  height: 40px;
  width:70vw;
}

.DIV_Mensajes{
  /*background-color: pink;*/
  height: auto;
  margin-top: 15px;
  width:70vw;
}

.DIV_Button{
  /*background-color: green;*/
  margin-top: 5px;
  height: 55px;
  width:70vw;
}
/***************Alertas*************/
.alert
{
  padding: 1em;
  color: #fff;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 14px;
}
#errores2
{
  background: #f44d4d;
  border:1px solid #b20101;
  color: #b20101;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 10px;
  width: 12vw;
}
#success2
{
  background: #4bd047;
  border: 1px solid #047200;
  color: #047200;
}
/*************Boton y texto***************/
#ID_Btn{
  background: #3fb9e7;
  border-right: 10px;
  border-radius: 2px;
  border: none;
  color: #E1E9FA;
  cursor: pointer;

  font-family: "Roboto", Arial, sans-serif, helvetica;
  font-size: 1em;
  height: 45px;
  right: 16vw;
  width: 5vw;
  min-width: 100px;
  position: absolute;
}

#ID_Btn:hover{
  background: #00a2df;
}
.Texto{

  padding: 10px;

}
