html,
body {
  height: 100%;
  font-family: "Yu Gothic UI";
}

.form_login_box {
  max-width:90%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 15px;
  background: #fff;
  box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .form_login_box {
    max-width: 500px;
  }
}
.logo{
  margin: 30px auto;
  display: flex;
}
@media (min-width: 768px) {
  .form_login{
    max-width: 290px;
    margin: 0 auto;
  }

}

.form_login label {
  width: 100%;
  display: flex;
  font-weight: bold;
  font-size: 13px;
  color: #888;
  }

input.form-control::placeholder {
  color: #dedede;
}

.form_login + .form_login{
  margin-top: 20px;
  margin-bottom: 40px;
}
.btn-submit{
  width: 200px;
height: 32px;
border-radius: 16px;
background: #f3c032;
font-weight: bold;
font-size: 14px;
color: #fff;
margin: 0 auto 50px;
display: flex;
justify-content: center;
align-items: center;
}
.btn-submit:hover{
  background: #f3c032;
  color: #fff;
  opacity: .9;
}
.remind_pass_link{
  margin-bottom: 40px;
}
.remind_pass_link a{
  font-weight: bold;
  font-size: 13px;
  text-align: left;
  color: #888;
  border: 1px solid rgba(0, 0, 0, 0);
  display: inline-block;
}
.remind_pass_link a:hover{
  text-decoration: none;
  color:#006837;
}
.required{
  width: 30px;
  height: 14px;
  font-weight: normal;
  font-size: 10px;
  text-align: center;
  color: #b12400;
  border: 1px solid #b12400;
  background: #efcdc5;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_reminder{
  width: 300px;
  font-weight: bold;
  margin-top: 30px;
}
.btn_cancel a{
  margin-top: 80px;
  width: 115px;
  height: 32px;
  border-radius: 16px;
  background: #e9e9e9;
  font-size: 14px;
  text-align: center;
  color: #707070;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto 30px;
}
.text{
font-weight: bold;
font-size: 13px;
text-align: center;
color: #888;
border: 1px solid rgba(0, 0, 0, 0);
}
.note{
font-size: 12px;
color: #5d5d5d;
margin: 0;
}
.alert_message{
  border:1px solid #41BBBF;
  background-color: #D8EAEB;
  color:#41BBBF;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px 15px;
  margin-bottom: 30px;
}
.alert_message p{
  margin: 0;
  display: flex;
  align-items: center;
}
.alert_message svg{
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.alert_message.succeed svg{
  fill:#41BBBF;
}

.alert_message.error{
  border:1px solid #b10c00;
  background-color: rgba(239, 205, 197, 0.27);
  color:#b10c00;
}
.alert_message.error p{
  font-weight: bold;
  font-size: 14px;
  color: #b10c00;
}
.alert_message.error svg{
  fill: #b10c00;
  }