html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.root {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

.navi-bar {
  background: #fefeff;
  box-sizing: border-box;
  border-bottom: 1px solid #e2e2e2;
  box-shadow: 0 0 6px rgba(0,0,0,0.06);
  height: 60px;
}

.navi-bar-inner {
  text-align: left;
  width: 980px;
  height: 40px;
  line-height: 40px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.navi-bar-button {
  background: none;
  color: rgba(0,0,0,0.88);
  font-weight: 400;
  font-size: 16px;
  height: 40px;
  padding: 6px 15px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.navi-bar-button:hover {
  background: rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.palevioletred {
  color: palevioletred;
}

.navi-bar-login-button {
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #ffab48;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  box-sizing: border-box;
  text-align: center;
}

.navi-bar-login-button:hover {
  background: rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.content-wrapper {
  width: 100%;
  height: calc(100% - 60px);
  max-height: calc(100% - 60px);
}

.common-orange-btn {
  font-size: 14px;
  padding: 6px 15px;
  background: #ff8a00;
  border: none;
  color: white;
  outline: 1px solid #ff8a00;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.645,0.045,0.355,1);
}

.common-orange-btn:hover {
  opacity: 0.9;
}

.common-orange-btn:disabled {
  background: #f0f0f0;
  color: #b0b0b0;
  cursor: not-allowed;
  outline: none;
}

.sign-form {
  width: 400px;
  margin: auto;
}

.sign-form-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sign-form-label {
  width: 100px;
  text-align: right;
}

.sign-form-input {
  flex-grow: 1;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  border: 0;
  cursor: text;
  border-bottom: 1px solid #E0E0E0;
  background: transparent;
}

.sign-form-input:focus, .sign-form-input:focus-visible {
  border: none;
  border-bottom: 1px solid #E0E0E0;
  outline: none;
}

.sign-form-input:-webkit-autofill {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0), inset 0 0 0 36px rgba(255,255,255,1);
}

.sign-btn-row {
  width: 300px;
  margin-left: 100px;
  display: flex;
  align-items: center;
}
