body {
  letter-spacing: 1px;
}
#content{
  bottom: 0;
  padding-bottom: 0;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.tabsBox {
  margin-top: 0.9275rem;
}

.tabs {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2), 0 0.18rem 0.375rem rgba(0, 0, 0, 0.15);
  border-radius: 0.3125rem;
  margin: auto;
  padding: 0.9375rem;
}

.tabs input[name="tab-control"] {
  display: none;
}

.tabs ul li label {
  font-size: 0.8rem;
  color: #0092db;
}

.tabs ul {
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tabs ul li {
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.tabs ul li label {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #929daf;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.125rem;
}

.tabs ul li label br {
  display: none;
}

.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
  outline: 0;
  color: #bec5cf;
}

.tabs .slider {
  position: relative;
  width: 33%;
  -webkit-transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
  transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.tabs .slider .indicator {
  position: relative;
  width: 50px;
  max-width: 100%;
  margin: 0 auto;
  height: 4px;
  background: #0092db;
  border-radius: 1px;
}

.tabs .content {
  height: 100%;
}

.tabs .content section {
  display: none;
  -webkit-animation-name: content;
  animation-name: content;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  line-height: 1.4;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
  cursor: default;
  color: #0092db;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.tabs input[name="tab-control"]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
  display: block;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
  cursor: default;
  color: #0092db;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.tabs input[name="tab-control"]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
  display: block;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
  cursor: default;
  color: #0092db;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.tabs input[name="tab-control"]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
  display: block;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
  cursor: default;
  color: #0092db;
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ .slider {
  -webkit-transform: translateX(300%);
  transform: translateX(300%);
}

.tabs input[name="tab-control"]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
  display: block;
}

@-webkit-keyframes content {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes content {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@media (max-width: 1000px) {
  .tabs ul li label {
    white-space: initial;
  }

  .tabs ul li label br {
    display: initial;
  }
}

.sectionDiv {
  width: 100%;
  height: 100%;
}

.myInput::-webkit-input-placeholder {
  color: rgb(160, 160, 160);
}

.myInput:-moz-placeholder {
  color: black;
}

.myInput::-moz-placeholder {
  color: black;
}

.myInput:-ms-input-placeholder {
  color: black;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group .myInput{
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .myInput:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group .myInput, .input-group-btn {
  display: table-cell;
}

.login-input-row{
  margin-top: 0.9875rem;
}



.myButton {
  border: none;
  color: white;
  padding: 0.6rem 0.875rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 0.25rem;
}

.loginBtnBox {
  text-align: center;
  margin-top: 0.9875rem;
}

.clickableTextBox {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.clickableText {
  text-align: center;
  width: 50%;
  color: #0092db;
  font-size: 1rem;
}
.tip-box{
  font-size: 0.8rem;
  margin-bottom: 0.9375rem;
  line-height: 1.5;
}
.tip-box.attention{
  color: red;
}

.footer-card {
  box-sizing: border-box;
  width: 100%;
  padding: 1.125rem;
  font-size: 0.75rem;
  color: #c7c7c7;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  line-height: 1.0625rem;
}
.footer-card span {
  display: block;
  margin-bottom: 0.125rem;
}
