/* Login */

.inputUser {
  width: 229px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #AFACAC;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  text-align: center;
}


.inputPass {
  width: 229px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #AFACAC;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  text-align: center;
}

.btnLogin {
  width: 277px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  top: 134px;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
  background-color: #F89626;
  color: #FFFFFF;
  border: none;
  box-shadow: 0px 4px 4px #AFACAC;
  border-radius: 15px;
  font-size: medium;
  ;
}

.btnLogin:hover {
  background-color: #fba645;
}

.divBtnGoogleLogin {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.btnRegGoogleLogin {
  width: 200px;
  height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  top: 190px;
  margin: auto;
  background-color: #3367D6;
  color: #ffffff;
  border: none;
  box-shadow: 0px 4px 4px #AFACAC;
  border-radius: 15px;
}

.btnRegGoogleLogin:hover {
  background-color: #4285F4;
}

.logoGoogleLogin {
  margin-right: 5px;
  border-radius: 20px;
  height: 25px;
  width: 25px;
}

.textoGoogleLogin {
  font-family: 'Montserrat', sans-serif;
}

.textRegister {
  width: 200px;
  height: 21px;
  position: absolute;
  left: 0;
  right: 0;
  top: 266px;
  margin: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #676767;
}

.linkRegister {
  width: 87px;
  height: 22px;
  position: absolute;
  left: 0;
  right: 0;
  top: 285px;
  margin: auto;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-align: center;

  color: #F89626;
}

.linkRegister:hover {
  color: #fbb667;
}

.familyImg {
  width: 100%;
  max-width: 358px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

@media (max-width: 768px) {

  /* login */
  .logoGrande {
    width: 15%;
    max-width: 108px;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }

  .divLogin {
    position: absolute;
    width: 80%;
    max-width: 300px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 150px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px #8AF0D8;
    border-radius: 15px;
  }

  .inputUser .inputPass {
    width: 80%;
    max-width: 229px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 22px;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #AFACAC;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    text-align: center;
  }

  .btnLogin {

    width: 80%;
    max-width: 277px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .familyImg {
    width: 80%;
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100px;
  }
}