@import url("https://rsms.me/inter/inter.css");
html {
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.err-txt {
  color: red;
}
body {
  background-color: rgb(248, 249, 252);
  color: rgb(40, 40, 42);
}
main {
  margin-top: 5vh;
  text-align: center;
  margin-bottom: 10vh;
}
.title {
  font-size: 1.7em;
  font-weight: 700;
}
.headd {
  font-size: 1.3em;
}
.logou {
  height: 15vh;
}
.splitt {
  display: flex;
  width: 80vw;
  margin: 0 auto;
  margin-top: 7vh;
  text-align: left;
  flex-wrap: wrap;
}
.line {
  width: 70vw;
  height: 1px;
  background-color: rgba(40, 40, 42, 0.3);
  margin: 0 auto;
  margin-top: 5vh;
}
.head {
  font-size: 1.2em;
  font-weight: 700;
}
.splitt-side {
  width: 45%;
  margin-bottom: 10vh;
}
.side-main {
  width: 55%;
  padding-right: 2%;
  min-width: 370px;
}
.bd {
  margin-top: 2vh;
  border-radius: 10px;
  background-color: #fff;
  filter: drop-shadow(5px 5px 10px #aaa);
  width: 70%;
  min-width:344px;
}
.btn-imgs{
  display: none;
}
.side-lp {
  width: 40%;
}
.bodd {
  font-size: 0.8em;
  color: #666;
  line-height: 1.7em;
}
.sso-box {
  margin-top: 50vh;
  margin-left: 50vw;
  transform: translate(-50%, -50%);
  width: 55vw;
  height: 55vh;
  background-color: #fff;
  filter: drop-shadow(5px 5px 10px #aaa);
  border-radius: 10px;
  position: relative;
  padding: 5%;
}
.sso-logo {
  height: 15vh;
  display: block;
  margin: 0 auto;
  padding-top: 0em;
  padding-bottom: 2em;
}
.sso-texts{
    text-align: center;

}
.sso-title{
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 1em;
}
.errcode-text{
    margin-top: 2em;
    color: #888;
}
.loading-icon{
    height: 5vh;
    margin-top: 2em;
    animation: animation-ld infinite 1s linear;

}
@keyframes animation-ld {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.form-box-c {
  position: absolute;
  top: 50vh;
  left: 50vw;

  transform: translateY(-50%);
  border-radius: 10px;
  background-color: white;
  filter: drop-shadow(5px 5px 10px #aaa);
  width: 50vw;
}
.form-c {
  margin-top: 2vh;

  width: 70%;
  min-width: 344px;
}
.wrap-f {
  padding: 5%;
}
.form-t {
  font-weight: 600;
  color: #222;
  font-size: 1.3em;
}
.planned-maintenance{

  width: 90%;
  margin: 0 auto;
}
.dn{
  display: none;
}
.pmbox{
  background-color: #2359c2;
  color: #fff;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}
.wrap-pm{
  padding: 1em;
}
.pm-title{
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.8em;
}
.txb {
  padding: 3% 2%;
  border: 1px solid #bbb;
  background-color: #fcfcfc;
  border-radius: 10px;
  font-size: 1.3em;
  font-family: monospace;
}
.form-b {
  color: #fff;
  background-color: #2359c2;
  display: inline-block;
  padding: 2%;
  line-height: 2.4em;
  width: 25%;
  border-radius: 10px;
  text-align: center;
  filter: drop-shadow(0px 0px 10px #2358c28c);
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.form-b:hover {
  background-color: #1d4ba7;
}
.legal-txt {
  color: #999;
  font-size: 0.8em;
}
@keyframes pm-anim {
  0%{
    background-color: #2359c2;
    color: #fff;
  }
  100%{
    background-color: #fff;
    color: unset;
  }
  
}
@media only screen and (max-width: 600px) {
  main {
    width: 90vw;
    margin: 0 auto;
    margin-top: 5vh;

    margin-bottom: 10vh;
  }
  .splitt {
    display: block;
  }
  .splitt-side {
    width: 100% !important;
  }
  .side-main {
    min-width: unset;
  }
  .form-c {
    min-width: unset;
    width: 100%;
  }
  .form-b {
    width: 100%;
  }
  .txb {
    width: 100%;
  }
}
@media screen and (prefers-color-scheme: dark){
    body{
        background-color: #111;
        color: #f0f0f0;
    }
    .sso-box{
        background-color: #151515;
        filter: none
    }
    .sso-logo{
        filter: invert();
    }
    .logou{
      filter: invert();
    }
    .bd{
      background-color: #151515;
      filter: drop-shadow(5px 5px 10px #222);
    }
    .form-t{
      color: #ddd;
    }
    .form-tx{
      filter: invert();
    }
}
