@charset "UTF-8";

html {
  width: 100%;
  height: 100%;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 10pt;
  // background: linear-gradient(22deg, #0837A9, #25AEE1 50% , #92ECF9);
  background: linear-gradient(90deg, #2359d9, #2692dd 50% , #29c7e2);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-body {
  background: linear-gradient(#F7F8FC, #DFE1E6);
  box-shadow: 2px 0px 2px 0.5px #f983b4b5, -2px 4px 4px 2px #4f65ff4a;
  height: auto;
  width: 394px;
  border-radius: 10px;
  padding: 38px 48px;
}

.panel-body .app-name-area {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2369E1;
  font-size: 30pt;
  white-space: nowrap;
}

.panel-body .app-name-area img {
  width: 330px;
  height: 72px;
  margin-bottom: 4px;
}

.panel-body .client-info-area {
  display: flex;
  flex-direction: column;
  height: 71px;
}

.panel-body form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel-body form .input-group {
  margin: 0;
  width: 100%;
}

.panel-body form .input-group .input-group-addon {
  background-color: #C8CACA;
}

.panel-body form .input-group input {
  box-shadow: unset;
}

.panel-body form .input-group input:focus {
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.panel-body .login-button {
  margin-top: 28px;
  color: white;
  border-radius: 17px;
  background: linear-gradient(#4CA3E6,#2059D9);
  box-shadow: 0px 0px 1px -1px rgba(0,0,0,.5), 3px 3px 4px 0px rgba(0,0,0,.2), 0 0px 8px 0px rgba(0,0,0,0.15);
  height: 35px;
  width: 216px;
  border: none;
}

.panel-body .login-button:hover {
  background: linear-gradient(#68b7ed, #517fe5);
}

.panel-body .login-button:focus {
  outline: none;
}

.error-message {
  color: red;
  display: none;
}

.fa-sign-in {
	margin-right: 1em;
}