body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 23px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  box-sizing: content-box;
}
.bg {
  background: url("../images/bg.png") top center no-repeat #f5f5f5;
  background-size: 100%;
  position: relative;
  z-index: 1;
}
.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-top: 0;
}
input:focus-visible {
  outline: none;
}
input::placeholder {
  color: #bbb;
  font-size: 16px;
}
.header-back{
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.header-back h1{
  margin: 0;
  font-size: 20px;
  font-weight: normal;
}
.input input {
  font-size: 16px;
  background: #f0f1f6;
  border: 1px solid #c6c6c6;
  border-radius: 10px;
  padding-left: 10px;
  height: 40px;
  color: #333;
  width: 90%;
  margin: 5px auto;
  box-sizing: content-box;
}
button:disabled{
  background: #a8a8a8;
}
.text{
    margin: 10px 0 5px 0;
    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: #f1f1f1;
  }
.btn {
  display: block;
  width: 90%;
  margin: 20px auto;
  padding: 10px;
  border-radius: 40px;
  background: #C10008;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  border: 1px solid #5d0006;
}
.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: 999999;
}
.link-btn{
   color: #DA0009;
   font-size: 20px;
}
.mask{
  display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    z-index: 9999;
    background: #000;
}
#message {line-height: 60px;}