html,
body {
  height: 100vh;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_font {
  font-family: "Pattaya", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.getstarted,
.getstarted:focus {
  background: #FFD500;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  border: none;
  color: #0e0d0d;
}

.getstarted:hover,
.getstarted:focus:hover {
  color: #fff;
  background: #efad05;
}

.btnforgotpass,
.btnforgotpass:focus {
  background: #393A3C;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  border: none;
  color: #fff;
}

.btnforgotpass:hover,
.btnforgotpass:focus:hover {
  color: #fff;
  background: #656566;
}

.title-login {
  font-size: 1.5rem !important;
  font-weight: 900;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div-content {
  width: 400px;
  color: #fff;
  background-color: #070707;
  padding: 30px 30px 30px 30px;
  border-radius: 15px;
  opacity: 0.8;
}

.div-button {
  display: flex;
  justify-content: space-around;
}

.msg_login {
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .hero {
    display: block;
  }

  .space {
    height: 40px;
  }

  .btnforgotpass {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .getstarted {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .title-login {
    font-size: 1.5rem !important;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .div-content {
    margin: 0 auto;
    text-align: start;
    min-height: 300px;
    max-width: 320px;
    color: #fff;
    background-color: #070707;
    padding: 15px 15px 15px 15px;
    border-radius: 15px;
    opacity: 0.8;
  }

  .div-button {
    margin-top: 30px !important;
  }
  
  .msg_login {
    font-size: 0.8rem;
  }

}