body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0;
  background-color: #fff;
}


/* 
.container {
  text-align: center;
  max-width: 800px;
  padding: 20px 0px;
  width: 80%;
} */

.header {
  font-size: 35px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
}

.error_message {
  color: red;
  font-size: 16px;
  font-weight: bold;
}

.form-label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  text-align: start;
}

.input_password_container,
.input_password_confirm_container{
  position: relative;
}

.toggle_password{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.password_request {
  text-align: end;
}

.password_request a {
  font-size: 16px;
  color: #64DADF!important;
  font-weight: bold;
}


.buttons {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 10px;
}

button {
  height: 55px;
}


.buttons .login_btn {
  background-color: #64DADF;
}

.buttons .login_btn:hover {
  background-color: white;
  color: #333;
}

.buttons .login_line {
  background-color: white;
  color: #64DADF;
  border-color: #64DADF !important;
}

.buttons .login_line:hover {
  background-color: #64DADF;
  color: white;
}


.buttons button {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 100vh;
  /* background-color: #f7f7f7; */
  cursor: pointer;
  font-weight: bold;
  color: white;
  /* box-shadow: 1px 1px 2px gray; */
}

.login_commet,
.register_commet {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.register_commet {
  padding-top: 25px;
}

.line_logo {
  height: 35px;
  display: inline-block;
}

.register {
  margin-top: 50px;
  background-color: #F2F2F2;
  height: 200px;

}

@media (min-width: 1536px) {
  .container {
      max-width: 600px!important;
  }
}


/* sp 用 */
@media (max-width: 640px) {
  .container {
      border: none;
      border-radius: none;
      box-shadow: none;
  }
  
}