/* 
  Las variables de los colores se encuentarn dentro de styles.css
*/

* {
  font-family: "comgp_text_std", sans-serif;
}

body {
  overflow-y: hidden;
}

.btn {
  color: var(--fontColorW);
}

/*FORMULARIO DE INGRESO*/

.mainIngreso {
  width: 70%;
  min-width: 265px;
  max-width: 850px;
  height: 450px;
  min-height: 300px;
  max-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 5px 5px 10px #334;
  border-radius: 20px;
  margin-top: 10%;
  margin-bottom: 50px;
  z-index: 10;
}

/*LADO IZQUIERDO*/

.ingresoInfo {
  width: 50%;
  height: 100%;
  background-color: var(--infoFormColor);
  border-radius: 20px 0 0 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.logoForm {
  width: 95%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.textForm {
  width: 95%;
  height: 40%;
  font-size: 10px;
  font-weight: thin;
  color: var(--fontColorW);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.infoTitle {
  font-size: 22px;
  font-weight: lighter;
}

.infoTtitleLine {
  width: 50px;
  height: 2px;
  background-color: var(--fontColorW);
  margin-top: -10px;
}

.textb {
  font-size: 9px;
}

.btnContainer {
  width: 85%;
  height: 30%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.btnLines {
  width: 25px;
  height: 35px;
  background-image: var(--btnLines);
  border-radius: 5px 0 0 0;   
  background-size: 100% 100%;
  background-repeat: no-repeat;
  object-fit: contain;
  margin-right: 10px;
}

.fa-caret-right {
  width: 20px;
  height: 20px;
  margin-left: 70px;
  color: var(--fontColorW);
}

.leerMasBtn, .ingresarBtn, .newUserBtn {
  width: 90%;
  margin: 0;
  padding-top: 5px;
  display: flex;
  color: var(--fontColorW);
}


.leerMasBtn:hover {
  cursor: pointer;
  background-color: var(--fontColorW);
  color: var(--color1);
  transition: .4s;
}

.leerMasText {
  width: 80%;
}

.btnsStyles {
  color: var(--fontColorW);
  background-color: var(--buttonsGreen);
}

.fa-caret-right {
  width: 15px;
  height: 20px;
  color: var(--fontColorW);
  margin-top: 3px;
  margin-right: 20px;
}

.ingresarBtn .fa-caret-right {
  margin-right: 0;
  margin-left: 55%;
}

/*LADO DERECHO*/

.ingresoLogin {
  width: 50%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(30deg, #374454 , #666f7c);
  opacity: 70%;
}
.ingresoForm {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left:15px;
  padding-right: 15px;
}

.ingresoTitle {
  font-size: 27px;
  letter-spacing: 5px;
  color: var(--fontColorW);
}

.ingresoTitleLine {
  width: 50px;
  height: 5px;
  background-color: #24b898;
}

.divInput {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: space-around;
}

.divInputTop {
  align-items: flex-end;
  margin-bottom: 7px;
}

.divInputSearch {
  width: 33%;
  height: 100%;
}

.inputIngreso {
  width: 250px;
  max-width: 99%;
  height: 40px;
  padding-left: 5px;
  margin-left: 20px;
  border: none;
  background-color: var(--inputBackground);
  border-radius: 0 0 5px 0;
}

.inputIngreso:focus {
  outline: none;
}

.icon {
  width: 40px;
  height: 40px;
  color: var(--fontColorW);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  border-radius: 0 0 5px 0;
  margin-right: 20px;
}

.ingresoBtnContainer, .solicitarUsuarioBtnContainer {
  align-items: flex-start;
  height: 45px;
}

.ingresarBtn, .newUserBtn {
  margin-right: 40px;
}

.ingresarBtn:hover, .newUserBtn:hover {
  background-color: var(--fontColorW);
  color: var(--color1);
  cursor: pointer;
  transition: .4s;
}

.ingresarBtn:active, .newUserBtn:active {
  box-shadow: 2px 2px 5px var(--shadow);
}

.infoUsuario {
  width: 95%;
  height: auto;
  font-size: 10px;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--fontColorW);
}

.linkUserMail {
  color: #49e;
  font-weight: bold;
  
}

.version {
  width: 100%;
  height: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 8px;
  color: var(--fontColorW);
}

/*PAGINA DE AYUDA*/

.helpContainer {
  width: 100vw;
  height: auto;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  display: none;  
  z-index: 10;
}

.aboutUs {
  width: 40%;
  min-width: 350px;
  height: auto;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 5px 5px 5px var(--shadow);
  color: var(--color1);
  opacity: 100;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #616E7D #EEEEEE;
}

.decoraionLine {
  width: 100%;
  height: 20px;
  display: flex;
}

.boxColor {
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: 100%;
  background-color: var(--color1);
}

.boxColorTwo {
  background-color: #24b898;
}

.blankSpace {
  width: 98%;
  height: auto;
  text-align: right;
  padding-right: 5px;
}

#closeInfo:hover {
  font-weight: bold;
  cursor: pointer;
}

.divHeader {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 20px;
}

.AboutUsLogo {
  width: 50%;
  height: auto;
  padding-left: 50px;
}

.AboutUsTitle {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  font-size: 25px;
  align-items: flex-end;
  padding-right: 5%;
}

.AboutUsTitleLine {
  width: 200px;
  height: 3px;
  background-color: var(--color1);
}

.questionBox {
  width: 100%;
  height: auto;
  display: flex;
}

.answerBox {
  width: 60%;
  font-size: 13px;
}
.divQuestion {
  width: 40%;
  display: flex;
  justify-content: space-between;
}

.divQuestionNumber {
  margin-left: 20px;
}

.divQuestionText {
  margin-right: 20px;
  margin-top: 25px;
}

.answerText {
  padding-right: 5%;
}


.divitionLine {
  width: 95%;
  height: 3px;
  background-color: var(--shadow);
  margin-top: 30px;
  margin-bottom: 20px;
}

.decoraionLineBottom {
  margin-top: 20px;
}

footer {
  width: 100%;
  height: 40px;
  display: flex;justify-content: center;
  align-items: center;
  color: var(--fontColorW);
  margin-bottom: 10px;
  margin-top: 150px;
}

.footerText {
  margin-left: 5px;
}

@media screen and (max-width: 600px) {

  /*FORMULARIO DE INGRESO*/

  .mainIngreso {
    width: 280px;
    height: 600px;
    flex-direction: column;
    margin-top: 25%;
  }

  .infoTitle {
    margin-top: 25px;
  }

  .ingresoInfo {
    width: 100%;
    height: 30%;
    border-radius: 20px 20px 0 0;
  }

  .ingresoLogin {
    width: 100%;
    height: 70%;
    border-radius: 0 0 20px 20px;
  }

  .inputIngreso {
    width: 200px;
  }

  .ingresarBtn {
    width: 200px;
  }

  .logoForm {
    align-items: flex-start;
    scale: .8;
  }

  .infoTitle {
    font-size: 30px;
  }

  .infoText {
    display: none;
  }

  .btnsStyles {
    width: 95%;
    height: 80%;
    display: flex;
    align-items: flex-end;
    margin-right: 0;
  }

  .leerMasBtn, .ingresarBtn, .newUserBtn {
  padding-top: 0px;
  display: flex;
  align-items: center;  
}

  .infoUsuario {
    margin-bottom: 5px;
  }

  .btnForm {
    display: none;
}

.ingresarBtn .fa-caret-right {
  margin-right: 0;
  margin-left: 45%;
}


  footer {
    margin-top: 0;
  }

  /*PAGINA DE AYUDA*/

  .divHeader {
    flex-direction: column;
  }

  .AboutUsTitle {
    width: 100%;
  align-items: center;
  }

  .questionBox {
    flex-direction: column;
    align-items: center;
  }

  .divQuestion {
    width: 100%;
    justify-content: flex-start;
  }
  .answerBox {
    width: 100%;
    margin-left: 5%;
    margin-bottom: 15px;
  }

  .divQuestionNumber {
  margin-right: 15px;
  }

}
