@charset "UTF-8";

body {
  width: 100%;
  min-height: 100vh;
  background: url(../images/login_bg.png) center center / cover no-repeat fixed;
  color: #333;
}

h1 {
  margin: 0;
}

.main-container {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
}

.login-form-container {
  width: 320px;
  padding: 40px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.logo {
  margin-bottom: 40px;
}

.login-form-item {
  display: grid;
  margin-bottom: 20px;
}

.login-form-item label {
  text-align: left;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.login-form-item input {
  padding: 10px 8px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}

.login-button {
  height: 40px;
  color: #fff;
  border: none;
  border-radius: 3px;
  background-color: #11B5CD;
}

.description {
  margin: 0;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.description::before {
  content: '※';
}

.indentation {
  padding-left: 18px;
}

.ainergy-form-link {
  margin: 0;
  text-align: left;
  font-size: 0.875rem;
}

.password-display {
  position: relative;
}

.password-display input {
  padding-right: 40px;
}

#eyes {
  position: absolute;
  top: 50%;
  right: 3%;
}