.login {
  width: 400px;
}
.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  background-color: rgb(55, 120, 184);
  color: white;
  padding: 0 10px;
  box-shadow: 0px 3px 10px rgba(160, 160, 160, 1);
}

.custom-header.head {
  background-color: rgb(80, 90, 80);
}

.custom-header > .left {
  font-size: 1.1rem;
}
.custom-header > .right {
  display: flex;
  align-items: center;
}

.custom-header > .right > .column {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.custom-header > .right > .controller {
  margin-left: 10px;
}

.custom-header .current-user * {
  margin-left: 5px;
}
.footer {
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .left {
  text-align: left;
}
.footer .right {
  text-align: right;
}
/** 処理中メッセージ表示用CSS */

/** 処理中メッセージ表示の親要素 */
.processing-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483646;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}

/** 処理中メッセージ */
#processing-message {
  color: white;
  font-size: 1.2rem;
}

