body {
  align-items: center;
  background-color: #fffcf9;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 95vh;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  position: fixed;
  top: 0;
  width: 100%;
}
.common-tosbac-header{
  margin-left: 10px;
}
.common-information-button,
.common-exit-button {
  background: transparent;
  border: none;
  cursor: pointer;
  margin-right: 5px
}
.common-information-button img,
.common-exit-button img {
  transition: transform 0.2s ease;
}
.common-information-button:hover img,
.common-exit-button:hover img {
   transform: scale(1.1);
}
.common-information-button:active img,
.common-exit-button:active img {
  transform: scale(0.95);
  filter: brightness(0.9);
}
.common-information-button {
  margin-right: -10px;
}
.information {
  background: rgba(0,0,0,0.5);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
}
.information__overlay {
  background: #f8f8f8;
  border: 2px solid var(--submit-button-background-color);
  margin: auto;
  width: 500px;
}
.information__content {
  background: #fff;
  border: 1px solid #efefef;
  margin: auto;
  padding: 0 10px;
  text-align: left;
  width: 450px;
}
.information__close {
  background: var(--submit-button-background-color);
  border: 1px solid var(--submit-button-border-color);
  border-radius: 7px;
  box-shadow: 2px 2px 4px gray;
  color: var(--submit-button-text-color);
  cursor: pointer;
  font-size: 20px;
  margin: 20px auto;
  padding: 5px 15px;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.1s ease;
}
.information__close:hover {
  background-color: var(--submit-button-hover-background-color);
}
.information__close:active {
  box-shadow: 1px 1px 2px #808080;
  transform: translateY(1px);
}
.hidden {
  display: none !important;
}

.common-page-image {
  margin: 0;
}

.common-page-title {
  font-weight: bold;
  margin: 0 0 20px;
}

.common-lead {
  font-size: 18px;
  margin: 0 0 10px;
}

.common-error-message-receive {
  color: #f00;
  font-weight: normal;
  margin-bottom: 10px;
}

.common-container {
  margin-top: 5px;
}

.common-label-1 {
  font-weight: 500;
  padding-right: var(--label-padding-right-1);
}
.common-label-2 {
  font-weight: 500;
  padding-right: var(--label-padding-right-2);
}
.common-label-3 {
  font-weight: 500;
  padding-right: var(--label-padding-right-3);
}

.common-input-icon {
  height: 19px;
  padding-bottom: 1px;
  vertical-align: sub;
  width: 19px;
    
}

.common-input {
  border: 1px solid var(--input-border-color);
  border-radius: 3px;
  height: 30px;
  outline: none;
  padding-left: 5px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  width: 335px;
}
.common-input:focus {
  box-shadow: 0 0 8px var(--input-focus-shadow-color);
  transform: scale(1.02);
}
.common-input:disabled {
  background-color: #eee;
  border-color: #bbb;
  cursor: not-allowed;
  opacity: 0.6;
}

.common-submit-button {
  appearance: none;
  background: var(--submit-button-background-color);
  border:1px solid var(--submit-button-border-color);
  border-radius: 12px;
  box-shadow: 2px 2px 4px gray;
  color: var(--submit-button-text-color);
  cursor: pointer;
  font-size: 21px;
  margin-top: 40px;
  padding: 18px 35px;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.1s ease;
}
.common-submit-button:hover {
  background-color: var(--submit-button-hover-background-color);
}
.common-submit-button:active {
  box-shadow: 1px 1px 2px #808080;
  transform: translateY(1px);
}
.common-submit-button:disabled {
  background-color: #eee;
  border-color: #bbb;
  box-shadow: none;
  color: #888;
  transform: none;
  cursor: not-allowed;
  opacity: 0.3;
  box-shadow: none !important;
  transition: none !important;
  transform: none !important;
}

.common-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #d3d3d3;
  bottom: 0;
  color: #808080;
  font-size: 12px;
  position: fixed;
  width: 100%;
}

