html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  background: #00377a;
}

body.access-login-body {
  background: #00377a;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.access-login-page {
  min-height: 100vh;
  width: 100%;
  background: #00377a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.access-login-title {
  position: absolute;
  left: 24px;
  top: 18px;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

.access-login-title strong {
  font-weight: bold;
}

.access-login-card {
  width: 560px;
  max-width: calc(100vw - 40px);
  text-align: center;
  margin: 0 auto;
}

.access-login-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 32px auto;
}

.access-login-form {
  width: 280px;
  margin: 0 auto 44px auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-login-form input {
  height: 26px;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 3px;
  font-size: 13px;
  box-sizing: border-box;
}

.access-login-form button {
  height: 28px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

.access-login-form button:hover {
  background: rgba(255,255,255,.28);
}

.access-login-error {
  width: 280px;
  margin: 0 auto 12px auto;
  padding: 7px 9px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 3px;
  font-size: 12px;
  box-sizing: border-box;
}

.access-login-drop {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
}

.access-login-drop img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

@media (max-width: 640px) {
  .access-login-title {
    left: 0;
    right: 0;
    top: 16px;
    padding: 0 18px;
    text-align: center;
  }

  .access-login-card {
    margin-top: 38px;
  }
}
