@charset "utf-8";
/* --------------------------------------------------
 * ログイン画面
-------------------------------------------------- */
.foms-container {
  margin-left: 0px;
}
.foms-container .foms-header-simple {
  padding-left: 20px;
  background-color: #1973aa;
}
.foms-container .foms-header-simple > :not(.foms-datetimepicker) {
  vertical-align: middle;
  line-height: 42px;
}
.foms-container .foms-header-simple .foms-title {
  color: white;
  font-size: 14px;
}
.foms-container .foms-main {
  text-align: center;
}
.foms-container .foms-main .foms-system-name-group {
  padding-top: 145px;
  padding-bottom: 15px;
}
.foms-container .foms-main .foms-system-name-group .foms-system-name {
  font-size: 18px;
  font-width: bold;
  color: #1973aa;
  position: relative;
  top: -5px;
}
.foms-container .foms-main .foms-form-login {
  padding-top: 10px;
  display: inline-block;
}
.foms-container .foms-main .foms-form-login .foms-form-group {
  margin: 5px 0px;
}
.foms-container .foms-main .foms-form-login .foms-form-group .foms-control-label {
  font-size: 12px;
  color: #555555;
  width: 80px;
  float: left;
  text-align: left;
}
.foms-container .foms-main .foms-form-login .foms-form-group .foms-form-control {
  width: 200px;
  color: #555555;
  box-sizing: border-box;
}
.foms-container .foms-main .foms-form-login .foms-btn-group {
  width: 280px;
  margin-top: 20px;
  text-align: center;
}
/* ローディング画面のスタイル */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5); /* 半透明のグレー背景 */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loading-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #1973aa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
