@charset "UTF-8";

/* body */
body {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #EEEEEE;
  background-image: url(../img/bg.png);
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family:'BIZ UDPGothic', serif, 'メイリオ', 'Meiryo', sans-serif !important;
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Form Layout */
.form-wrapper {
  background: #fafafa;
  border-radius: 4px;
  padding: 80px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

h1 {
  text-align: center;
  color: #0C2B8E;
  margin-bottom: 60px;
}

form {
  width: 400px;
}

.form-item {
  margin-bottom: 0.75em;
  width: 100%;
}

.form-item input {
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #e9e9e9;
  color: #666 !important;
  font-size: 16px;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
}

.form-item input:focus {
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}

.button-panel {
  margin: 40px 0 0;
  width: 100%;
}

.button-panel .button {
  background: #0C2B8E;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.button:hover {
  opacity: 0.5;
}

.invalid-feedback {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}
