body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 23px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: content-box;
  color: #333;
}
.no-weight{
  font-weight: normal;
}
.flex{
  display: flex;
}
.txt-gray{
  color: #bbb;
}
.bg {
  background: url("images/bg.jpg") top center no-repeat #0259a1;
  background-size: 100%;
  color: #fff;
  position: relative;
  z-index: 1;
}
/* .bg::after{
  display: block;
  content: '';
  width: 100%;
  background-image: linear-gradient(#0000 10%, #0006);
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
} */
.bg .content{
  position: relative;
  z-index: 2;
}
.content {
  height: 100%;
  padding: 10px;
}
.logo {
  padding: 20px 0 0 0;
  text-align: center;
}
.from {
  text-align: center;
  padding-top: 20px;
}
.input {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
input:focus-visible {
  outline: none;
}
input::placeholder {
  color: #bbb;
  font-size: 16px;
}
.input input {
  font-size: 20px;
  background: #f5f5f5;
  border: 1px solid #dedede;
  border-radius: 10px;
  padding-left: 10px;
  height: 40px;
  color: #333;
  width: 90%;
  margin: 0 auto;
  box-sizing: content-box;
}
button:disabled{
  background: #dcdcdc;
  border-color: #ccc;
}
.text{
    padding: 0 12px;
}
.text.left{
    text-align: left;
}
.center{
    text-align: center;
}
.input.white-input  input {
    border: 1px solid #ccc;
    color: #000;
  }
  .input.white-input  input:focus-visible {
    border-color: #bbb;
    background: #ecf4ff;
  }
.btn {
  display: block;
  width: 90%;
  margin: 20px auto;
  padding: 10px;
  border-radius: 40px;
  background: #FFEB3C;
  color: #333;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  border: 1px solid #045296;
}
.dialog{
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 38%;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  width: 80%;
  margin: auto;
  height: 100px;
  background: #fff;
  color: #333;
  z-index: 12;
}
.link-btn{
   color: #0a2f4d;
   font-size: 20px;
}
.mask{
  display: none;
  background: #d6d0d0d4;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 10;
}