body {
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
}

#container {
  background: url(/common/images/login_back_new.png);
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

/* content */
.login-wrap {
  height: 100vh;
  min-width: 50vw;
  width: 100%;
}
.sso-link {
  width: 320px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  vertical-align: baseline;
}
.lock-widget {
  width: 320px;
}
.logo-image {
  height: 52px;
}
.header-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  margin-bottom: 20px;
  margin-top: 18px !important;
}
.welcome-text {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1e212a;
  letter-spacing: 0;
}
.ad-wrap {
  height: 100vh;
  min-width: 50vw;
}
.ad-iframe {
  height: 100vh;
  min-width: 50vw;
  width: 100%;
  border: none;
}
/* MA popup */
#popup-view .message {
  background-color: transparent !important;
}
#popup-view .close {
  visibility: hidden;
}

.text-forgot-password {
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  padding: 4px;
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.btn-continue {
  width: 100%;
  height: 52px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 16px;
  background-color: #2a579a;
  color: #fff;
  margin-top: 20px;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  border-color: #2a579a !important;
}
.btn-continue:disabled {
  background-color: #b9c9e2;
  cursor: not-allowed;
  border: none;
}
.btn-continue:hover {
  background-color: #1d437c;
}
.btn-continue:focus,
.btn-continue:active {
  background-color: #1d437c !important;
  outline: 5px auto -webkit-focus-ring-color;
  border: none;
  border-color: #b9c9e2 !important;
  box-shadow: 0 0 0 4px rgba(102, 106, 108, 0.15),
    inset 0 0 0 150px rgba(0, 123, 173, 0.15) !important;
}

/* style input */
.input-wrapper {
  position: relative;
  margin-bottom: 12px;
  max-width: 400px;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
  border: 1px solid #c9cace;
  border-radius: 3px;
  background: white;
}

.input-wrapper label {
  position: absolute;
  top: 14px;
  left: 12px;
  color: #888;
  font-size: 16px;
  pointer-events: none;
  transition: 0.2s ease all;
  background: white;
  padding: 0 4px;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 14px;
  color: #2a579a;
}
.input-wrapper input:focus-visible {
  outline-color: #2a579a;
}
.input-wrapper input:not(:focus-visible) + label {
  color: #888;
}

.input-wrapper input:-webkit-autofill {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-name: onAutoFillStart;
  animation-name: onAutoFillStart;
}

@keyframes onAutoFillStart {
}

.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:active,
.input-wrapper input:-webkit-autofill:focus,
.input-wrapper input:-webkit-autofill:hover,
.input-wrapper input:-webkit-autofill.focus {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:not(:focus) {
  -webkit-box-shadow: inset 0 0 0 30px #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:focus,
.input-wrapper input:-webkit-autofill:hover {
  -webkit-text-fill-color: #2d333a;
}

/* Toggle Button Style */
.password-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 2px;
  right: 2px;
  background-color: white;
  padding: 4px 14px;
  min-height: 50px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  color: #fff;
  border: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.password-toggle-icon:hover {
  background-color: rgb(227, 226, 226);
  .password-icon-tooltip {
    opacity: 1;
  }
}
.password-toggle-icon:active {
  background-color: rgba(42, 87, 154, 0.15);
}

.password-icon-tooltip {
  text-align: center;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  bottom: 100%;
  left: -14px;
  padding: 8px;
  color: #f1f2f3;
  background-color: #000;
  font-size: 12px;
  border-radius: 3px;
  transition: opacity 0.3s ease-in-out;
}

.password-icon-tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  left: 50%;
  width: 0;
  height: 0;
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 8px 8px 0;
}
/* Forgot Password Text */
.forgot-password-text {
  margin: 24px 0 16px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: #2d333a;
}
.forgot-password-description-text {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0px;
}

.back-to-login-text {
  margin-top: 16px !important;
  display: flex !important;
  justify-content: center;
  width: 100%;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  border: 0;
  padding: 2px;
  margin: 0;
  line-height: 18px;
  display: inline;
  cursor: pointer;
  vertical-align: baseline;
  font-size: inherit;
  border-radius: 3px;
  color: #2a579a;
  background-color: transparent;
}

.send-email-successfully {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  margin-bottom: 128px;
}
.send-email-successfully-title {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 16px;
  font-weight: 400;
}
.send-email-successfully-description {
  font-size: 0.875rem;
  line-height: 1.6;
  word-wrap: break-word;
  text-align: center;
}

.btn-resend-email {
  background: transparent;
  color: #2d333a;
  border: 1px solid #c2c8d0 !important;
}
.btn-resend-email:hover,
.btn-resend-email:focus,
.btn-resend-email:active {
  background-color: rgb(241, 240, 240) !important;
  border: 1px solid #c2c8d0;
  color: #2d333a !important;
  border-color: #c2c8d0 !important;
  box-shadow: 0 0 0 4px rgba(102, 102, 102, 0.15),
    inset 0 0 0 150px rgba(185, 185, 185, 0.15) !important;
  border-color: #c2c8d0 !important;
  border: 1px solid #c2c8d0 !important;
}

.error-message-login {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  color: #d00e17;
}

.error-message {
  display: none;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  color: #d00e17;
}
.error-message-text {
  margin-left: 8px;
}
