html {
  height: 100%;
}

BODY {
  background-color: rgb(242,243,247);
  font-family: 'Noto Sans JP';

  display: flex;
  justify-content: center;
  align-items: center;

  height: 100%;
}

div.LoginContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

DIV.loginPane {
  width: 344px;
  background-color: white;
  padding: 32px;
  padding-right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

div.titleArea {
  padding-bottom: 10px;
}

DIV.loginArea {
  display: flex;
  padding: 0 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

SPAN.loginTitle {
  font-weight: 400;
  font-size: 27px;
  color: white;
  line-height: 36px;
  flex: 1 0 0;
}

SPAN.loginCaption {
  font-weight: 400;
  font-size: 27px;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 32px;
}

SPAN.loginComment {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  font-size: 12px;
}

DIV.buttons {
  width: 280px;
  display: flex;
  justify-content: center;
}

DIV.buttonContent {
  display: flex;
  align-items: center;
  width: 100%;
}

span.buttonText {
  flex-grow: 1;
  text-align: center;
}

BUTTON.loginButton {
  width: 280px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  background-color: white;
  border: 1px solid #D6D8DC;
  border-radius: 4px;
  font-family: 'Noto Sans JP';
}

span.SfIcon {
  display: flex;
  justify-content: flex-start;
  float: left;
  padding-left: 8px;
}

span.DyIcon {
  display: flex;
  justify-content: flex-start;
  padding-left: 8px;
}

BUTTON.loginButton:hover {
  background-color: #31449a;
  color: white;
}

BUTTON.loginButton:disabled {
  border: 1px dotted gray;
  color: lightgray;
}
