@charset "UTF-8";
/* CSS Document */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 10px 10px 15px rgba(0,0,0,0.05);
}
.center h1{
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid silver;
}
.center form{
  padding: 0 40px;
  box-sizing: border-box;
}
form .txt_field{
  position: relative;
  border-bottom: 1px solid #4f4e4b;
  margin: 30px 0;
}
.txt_field input{
  width: 100%;
  padding: 0 5px;
  height: 40px;
  font-size: 16px;
  border: none;
  background: #fff;
  outline: none;
}
.txt_field label{
  position: absolute;
  top: 50%;
  left: 5px;
  color: #adadad;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: .5s;
}
.txt_field span::before{
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #4b575f;
  transition: .5s;
}
.txt_field input:focus ~ label,
.txt_field input:valid ~ label{
  top: -5px;
  color: #4b575f;
}
.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before{
  width: 100%;
}
.pass{
  padding: 2px 10px 3px 10px!important;
  color: #8a8a8a!important;
  cursor: pointer;
  border-radius: 0!important;
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 0.9rem;
  font-weight: 400;
}
.pass_reset {
   margin: -5px 0 20px 5px!important;
  padding: 2px 10px 3px 10px!important;
  color: #8a8a8a!important;
  cursor: pointer;
  border-radius: 0!important;
  font-family: 'Noto Sans', sans-serif !important;
  font-size: 0.9rem;
  font-weight: 400;
  border: outset 2px #8a8a8a !important;
  background: #fff !important;
}
.pass_reset:hover{
  text-decoration: none;
  border: outset 2px #db001b !important;
  background: #ececec !important;
}
input[type="submit"]{
  width: 180px;
  height: 50px;
  border: outset 2px #8a8a8a !important;
  background: #fff !important;
  font-size: 18px;
  color: #4b575f;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}
input[type="submit"]:hover{
  border: outset 3px #db001b !important;
  transition: .2s;
  background: #ececec !important;
}
.homePage_link{
  margin: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #4b575f;
}
.homePage_link a{
  color: #4b575f;
  text-decoration: none;
  border-color: #4b575f;
}
.homePage_link a:hover{
  text-decoration: underline;
}
/* fa-awesome */
.fa {
	font-size: 1.3rem !important;
	color: #4b575f !important;
}

