/*-------------------------------------------------- IN_RUC */
.in_ruc_box {
  width: 100%;
  height: 34px;
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-columns: 1fr 50px       150px   1fr;
  grid-template-rows: 34px;
  grid-template-areas: " .   in_titulo  in_ruc  . ";
  color: #FFF;
  background: rgb(1, 113, 128);
  
}
.in_titulo {
  grid-area: in_titulo;
  width: 100px;
  display: grid;
  justify-items: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: rgb(143, 189, 196);
  letter-spacing: 1px;
}
.in_ruc  { 
  grid-area: in_ruc;
  height: 28px;
  font-size:16px; 
  color:#d7e7bf;
  display: grid;
  justify-items: center;
  align-items: center;
  background: rgb(1, 113, 128);
}
.in_ruc input {
  width: 120px;
  height: 24px;
  border: 0;
  border-radius: 5px;
  outline: none;
  font-weight: 300;
  font-size: 16px;
  font-weight: 400;
  color:#e2e0fc;
  background: rgb(31, 139, 153);
  padding: 0px 7px;
  letter-spacing: 1px;
}
/*--------------------------------------------------------------------------- INGRESO CLIENTE - USUARIO */
.linea {  border-bottom:1px solid #ccc; clear:both; padding:10px 0;}
.bienvenida {
  font-size: 20px;
  font-family: Verdana;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 35px;
}
/*-------------------------------------------------- IN_RUC */
.in_clave_box {
  width: 100%;
  height: 70px;
  display: grid;
  justify-items: center;
  align-items: center;
  grid-template-rows: 38px;
  grid-template-columns: 1fr 50px          10px  170px  1fr;
  grid-template-areas: " .   clave_titulo  .     clave  . ";
  color: #FFF; 
  padding-top: 10px;
  padding-bottom: 10px;
}
.clave_titulo {
  grid-area: clave_titulo;
  width: 100px;
  display: grid;
  justify-items: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #888;
  letter-spacing: 1px;
}
.clave  { 
  grid-area: clave;
  height: 30px;
  width: 100%;
  font-size:17px; 
  display: grid;
  justify-items: center;
  align-items: center;
}
.clave input {
  width: 150px;
  height: 30px;
  border: 1;
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 17px;
  font-weight: 400;
  padding: 0px 7px;
  letter-spacing: 1px;
  padding:7px 12px 7px 12px; 
}
