@charset "UTF-8";

.eight-entry {
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}
.eight-entry .device-title {
  color: #0E202E;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  line-height: normal;
}
.eight-entry .device-title .blue {
  color: #0054FF
}
.eight-entry iframe {
  margin: 0;
  padding: 8px;
}
.sp-login-btn {
  display: flex;
  max-width: 240px;
  padding: 8px 16px;
  margin: 12px auto 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #0054FF;
}
.qr-container {
  border-radius: 8px;
  border: 1px solid var(--Brand-primary, #0054FF);
  background: #FFF;
  width: 116px;
  height: 116px;
  margin: 8px auto 0;
  overflow: hidden;
}
.ee-balloon {
  width: 195px;
  margin: 8px auto 0;
}

.ee-form {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}
.ee-form__group {
  display: flex;
  flex-flow: column;
  max-width: 420px;
  width: 100%;
  margin: 0 0 24px;
}
.ee-form__group.double {
  flex-direction: row;
  gap: 20px;
}
.ee-form label {
  font-size: 16px;
  font-weight: 700;
}
.ee-form label sup {
  color: #FF6752;
  font-size: 16px;
  font-weight: 700;
}
.ee-form input[type="text"], .ee-form select {
  font-size: 15px;
  height: 48px;
  max-width: 420px;
  width: 100%;
  padding: 0 16px;
  border: solid 0.8px #cccccc;
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 8px;
  margin-bottom: 8px;
}
.ee-form select {
  background-image: url(../img/icon-arrow-down.svg);
  background-size: 16px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.ee-form input[type="submit"]
 {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 2px;
  margin: 24px auto;
  height: 48px;
  background: #0037a3;
  border: solid 1px #0037a3;
  cursor: pointer;
  text-align: center;
 }
 .ee-form .error {
  color: #e53935;
  font-size: 12px;
  margin-top: -4px;
}