@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 300;
  src: url(../boilermobile/css/webfonts/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7ZumR_0.ttf) format('truetype');
}
@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 400;
  src: url(../boilermobile/css/webfonts/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7ZumR_0.ttf) format('truetype');
}
@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 500;
  src: url(../boilermobile/css/webfonts/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7ZumR_0.ttf) format('truetype');
}
@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 600;
  src: url(../boilermobile/css/webfonts/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6pumR_0.ttf) format('truetype');
}
@font-face {
  font-family: 'Jura';
  font-style: normal;
  font-weight: 700;
  src: url(../boilermobile/css/webfonts/z7NOdRfiaC4Vd8hhoPzfb5vBTP266pumR_0.ttf) format('truetype');
}
* {
  /* 初始化 */
  margin: 0;
  padding: 0;
}
:root {
  --bglogin1: #444c4ed3;
  --bglogin2: #191d1fbe;
  --statuscolor: #ddcf0afa;
  --inputbg: #ffffff;
}
body {
  /* 100%窗口高度 */
  height: 100vh;
  /* 弹性布局 居中 */
  display: flex;
  gap: 50px;
  justify-content: center;
  font-family: 'Jura';
  align-items: center;
  /* 渐变背景 */
  /* background: linear-gradient(200deg, #e3c5eb, #a9c1ed); */
  background-image: url('/images/controllogix.jpg');
  background-size: cover;
  /* 背景图片覆盖整个页面 */
  background-repeat: no-repeat;
  /* 背景图片不重复 */
  /* 溢出隐藏 */
  overflow: hidden;
  /* 定义动画 */
}
body .square ul li,
body .circle ul li {
  position: absolute;
  border: 1px solid #fff;
  background-color: #fff;
  width: 30px;
  height: 30px;
  list-style: none;
  opacity: 0;
}
body .square li {
  top: 40vh;
  left: 60vw;
  /* 执行动画：动画名 时长 线性的 无限次播放 */
  animation: square 10s linear infinite;
}
body .square li:nth-child(2) {
  top: 80vh;
  left: 10vw;
  /* 设置动画延迟时间 */
  animation-delay: 2s;
}
body .square li:nth-child(3) {
  top: 80vh;
  left: 85vw;
  /* 设置动画延迟时间 */
  animation-delay: 4s;
}
body .square li:nth-child(4) {
  top: 10vh;
  left: 70vw;
  /* 设置动画延迟时间 */
  animation-delay: 6s;
}
body .square li:nth-child(5) {
  top: 10vh;
  left: 10vw;
  /* 设置动画延迟时间 */
  animation-delay: 8s;
}
body .circle li {
  bottom: 0;
  left: 15vw;
  /* 执行动画 */
  animation: circle 10s linear infinite;
}
body .circle li:nth-child(2) {
  left: 35vw;
  /* 设置动画延迟时间 */
  animation-delay: 2s;
}
body .circle li:nth-child(3) {
  left: 55vw;
  /* 设置动画延迟时间 */
  animation-delay: 6s;
}
body .circle li:nth-child(4) {
  left: 75vw;
  /* 设置动画延迟时间 */
  animation-delay: 4s;
}
body .circle li:nth-child(5) {
  left: 90vw;
  /* 设置动画延迟时间 */
  animation-delay: 8s;
}
@keyframes square {
  0% {
    transform: scale(0) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(5) rotateY(1000deg);
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    transform: scale(0) rotateY(0deg);
    opacity: 1;
    bottom: 0;
    border-radius: 0;
  }
  100% {
    transform: scale(5) rotateY(1000deg);
    opacity: 0;
    bottom: 90vh;
    border-radius: 50%;
  }
}
body .logintab_Content {
  --totalwidth: 380px;
  display: block;
  position: absolute;
  right: 130px;
  width: 18vw;
  width: var(--totalwidth);
  height: 500px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
body .logintab_Content > input {
  display: none;
}
body .logintab_Content > label {
  position: relative;
  float: left;
  width: 6vw;
  width: calc(var(--totalwidth) / 3);
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  background-color: var(--bglogin2);
  transition: all 0.3s;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  color: white;
}
body .logintab_Content > label img {
  width: 20%;
  margin: auto 10px;
}
body .logintab_Content > label .title {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-grow: 1;
}
body .logintab_Content ul {
  clear: both;
  width: 54vw;
  width: calc(var(--totalwidth) * 3);
  height: 75%;
  background-color: var(--bglogin1);
  transition: all 0.5s;
  padding-inline-start: 0%;
  margin: 0 auto;
}
body .logintab_Content ul li {
  float: left;
  list-style-type: none;
  width: var(--totalwidth);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  overflow: hidden;
  gap: 5px;
}
body .logintab_Content ul li .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 20%;
}
body .logintab_Content ul li .info .title {
  font-size: 20px;
  color: white;
  font-weight: 200;
}
body .logintab_Content ul li .input-fields {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: 50%;
  width: 90%;
}
body .logintab_Content ul li .input-fields input,
body .logintab_Content ul li .input-fields .emailContainer {
  height: 40px;
  margin: auto 10px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
  border: 0.1vw solid black;
  background-color: var(--inputbg);
}
body .logintab_Content ul li .input-fields input::placeholder,
body .logintab_Content ul li .input-fields .emailContainer::placeholder {
  color: #0000008c;
}
body .logintab_Content ul li .input-fields input input:focus,
body .logintab_Content ul li .input-fields .emailContainer input:focus {
  outline: none;
}
body .logintab_Content ul li .input-fields .emailContainer {
  display: flex;
  justify-content: start;
}
body .logintab_Content ul li .input-fields .emailContainer .emailInput {
  border: none;
  border-radius: 0;
  width: 35%;
}
body .logintab_Content ul li .input-fields .emailContainer select {
  font-size: 16px;
  width: 65%;
  border: none;
  border-left: #242424 1px solid;
  overflow: hidden;
}
body .logintab_Content ul li .input-fields .emailContainer select:focus {
  outline: none;
}
body .logintab_Content ul li .btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-grow: 1;
  height: 20%;
}
body .logintab_Content ul li .btns .items {
  display: flex;
  justify-content: start;
  align-items: center;
}
body .logintab_Content ul li .btns .items * {
  display: flex;
  justify-content: center;
  align-items: center;
}
body .logintab_Content ul li .btns .items label {
  margin-left: 5px;
  font-size: 12px;
  color: white;
}
body .logintab_Content ul li .btns .items a {
  font-size: 12px;
  color: yellow;
  padding-right: 10px;
}
body .logintab_Content ul li .btns .btn {
  font: inherit;
  background-color: #f0f0f0;
  border: 0;
  color: #242424;
  border-radius: 0.5em;
  font-size: 1rem;
  padding: 0.375em 1em;
  font-weight: 600;
  text-shadow: 0 0.0625em 0 #fff;
  box-shadow: inset 0 0.0625em 0 0 #f4f4f4, 0 0.0625em 0 0 #efefef, 0 0.125em 0 0 #ececec, 0 0.25em 0 0 #e0e0e0, 0 0.3125em 0 0 #dedede, 0 0.375em 0 0 #dcdcdc, 0 0.425em 0 0 #cacaca, 0 0.425em 0.5em 0 #cecece;
  transition: 0.15s ease;
  cursor: pointer;
}
body .logintab_Content ul li .btns .btn:active {
  translate: 0 0.225em;
  box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef, 0 0.0625em 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede, 0 0.2em 0 0 #dcdcdc, 0 0.225em 0 0 #cacaca, 0 0.225em 0.375em 0 #cecece;
}
body .logintab_Content ul li .btns .verifydisabled {
  opacity: 0.5;
  /* 降低透明度 */
  /* 或者 */
  color: lightgrey;
  /* 更改文本颜色 */
}
body .logintab_Content ul li .btns .verifydisabled:active {
  translate: none;
  box-shadow: none;
}
body .logintab_Content ul li .status {
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  color: var(--statuscolor);
  text-shadow: 0 0 5px black;
}
body .logintab_Content .change-password .step-verify {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
body .logintab_Content .change-password .step-verify .input-fields.verification-code {
  position: relative;
}
body .logintab_Content .change-password .step-verify .input-fields.verification-code input[type="text"] {
  padding-right: 120px;
  box-sizing: border-box;
}
body .logintab_Content .change-password .step-verify .input-fields.verification-code .countdown-btn {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
body .logintab_Content .change-password .step-verify .input-fields.verification-code .countdown-btn:hover {
  background-color: #0062cc;
}
body .logintab_Content .change-password .step-verify .input-fields.verification-code .countdown-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
body .logintab_Content .change-password .step-reset {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
body .logintab_Content .change-password .step-reset .password-container .toggle-password {
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: #666;
}
body .logintab_Content .change-password .step-reset .password-container .toggle-password:hover {
  color: #333;
}
body .logintab_Content .change-password .step-reset .password-strength-meter {
  height: 4px;
  background-color: #ccc;
  margin-top: 5px;
  border-radius: 2px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
body .logintab_Content .change-password .step-reset .password-strength-meter::before {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background-color: red;
  transition: width 0.3s ease, background-color 0.3s ease;
}
body .logintab_Content .change-password .step-reset .password-strength-meter.weak::before {
  width: 25%;
  background-color: #dc3545;
}
body .logintab_Content .change-password .step-reset .password-strength-meter.medium::before {
  width: 50%;
  background-color: #ffc107;
}
body .logintab_Content .change-password .step-reset .password-strength-meter.strong::before {
  width: 75%;
  background-color: #28a745;
}
body .logintab_Content .change-password .step-reset .password-strength-meter.very-strong::before {
  width: 100%;
  background-color: #1e7e34;
}
body .logintab_Content .change-password .step-success {
  display: flex ;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  width: 100%;
}
body .logintab_Content .languagecontain {
  background-color: var(--bglogin2);
  color: var(--inputbg);
  padding-right: 8px;
  height: 42px;
  display: flex;
  justify-content: end;
  align-items: center;
  /* From Uiverse.io by Yaya12085 */
}
body .logintab_Content .languagecontain img {
  margin: auto 15px;
  width: 20px;
}
body .logintab_Content .languagecontain .radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #EEE;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  width: 140px;
  font-size: 14px;
}
body .logintab_Content .languagecontain .radio-inputs .radio {
  flex: 1 1;
  text-align: center;
}
body .logintab_Content .languagecontain .radio-inputs .radio input {
  display: none;
}
body .logintab_Content .languagecontain .radio-inputs .radio input:checked + .name {
  background-color: #fff;
  font-weight: 600;
}
body .logintab_Content .languagecontain .radio-inputs .radio .name {
  height: 12px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background-color: var(--bglogin1);
  padding: 8px 0;
  color: #334155;
  transition: all 0.25s ease-in-out;
}
body .logintab_Content #tab_list1:checked ~ ul {
  margin-left: 0;
}
body .logintab_Content #tab_list1:checked ~ label[for="tab_list1"] {
  background-color: var(--bglogin1);
}
body .logintab_Content #tab_list2:checked ~ ul {
  margin-left: calc(var(--totalwidth)*-1);
}
body .logintab_Content #tab_list2:checked ~ label[for="tab_list2"] {
  background-color: var(--bglogin1);
}
body .logintab_Content #tab_list3:checked ~ ul {
  margin-left: calc(var(--totalwidth)*-2);
}
body .logintab_Content #tab_list3:checked ~ label[for="tab_list3"] {
  background-color: var(--bglogin1);
}
body .notification_Content {
  background-color: #516969ad;
  border-radius: 15px;
  width: 380px;
  height: 300px;
  position: absolute;
  top: 30%;
  display: flex;
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
body .notification_Content .title {
  width: 100%;
  height: 20%;
  display: flex;
  gap: 12px;
  justify-content: center;
  border-bottom: solid 1px white;
}
body .notification_Content .title img {
  width: 40px;
}
body .notification_Content .title .text {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
}
body .notification_Content .content {
  height: 20%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: white;
  font-size: 20px;
}
body .notification_Content .content button {
  height: 32px;
  background-color: rgba(50, 73, 50, 0.685);
  color: white;
  padding: 5px 24px;
}
