@charset "UTF-8";
.register-modal .modal-content {
  background-color: transparent;
  border-radius: 0;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 5px;
  font-size: 23px;
  cursor: pointer;
}

/* ❌ Close Button */
.close-btn {
  position: absolute;
  top: 0px;
  right: 5px;
  background-color: #053d20;
  border: none;
  font-size: 21px;
  color: #12c26a;
  cursor: pointer;
  transition: 0.3s ease;
  width: 30px;
  /* 按钮大小 */
  height: 30px;
  /* 按钮大小 */
  border-radius: 50%;
  /* 圆形 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #137584;
}

/* 让关闭按钮不影响 modal 的 padding */
.modal-content {
  position: relative;
  padding-top: 40px;
}

.register-title {
  margin-bottom: 15px;
  text-align: center;
  color: white;
  font-size: 20px;
}

.register-item-holder {
  padding: 0;
}

.logboxwrap {
  /* margin:45px 0 90px; */
  text-align: center;
  background-color: #015c35;
  padding: 20px 10px;
  margin: 0 auto;
  box-shadow: 1px 1px 4px #000000, 0 0 25px rgb(33, 33, 33);
  border-radius: 5px;
}

.regbox {
  width: 100%;
}
.regbox p {
  display: block;
  font-size: 0.95em;
  margin: 15px 0;
  line-height: 110%;
}

.box-title {
  margin-bottom: 20px;
}
.box-title h3 {
  display: block;
  color: #eab129;
  padding: 0 5px;
}
.box-title p {
  margin-bottom: 0;
}

.regbox .formfill {
  margin: 10px 0;
}
.regbox .formfill .formgroup {
  position: relative;
  margin-bottom: 20px;
}
.regbox .formfill label {
  font-size: 0.85em;
  padding: 2px;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  width: 100%;
  font-family: monsterrat-medium;
  border-bottom: none;
}
.regbox .formfill i {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  left: 10px;
  display: block;
  width: 20px;
  text-align: center;
  color: #70ffb5;
}
.regbox .formfill .formgroup:hover i {
  color: #70ffb5;
}
.regbox .formfill input {
  border: 0;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin: 0 0 2px;
  padding: 3px 0 3px 35px;
  width: 100%;
  border-bottom: 1px solid #70ffb5;
  color: #70ffb5;
}
.regbox .formfill input:focus {
  overflow: auto;
  border-bottom: 1px solid #70ffb5;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.1);
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.1);
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.1);
}

:-moz-placeholder {
  color: rgba(255, 255, 255, 0.1);
}

.formfill button.createBtn {
  height: 45px;
  font-size: 1em;
  margin: 0;
  width: 100%;
  background: transparent;
}

.createBtn {
  font-size: 0.95em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 0 15px;
  margin: 0;
  display: block;
  min-height: 30px;
  border: 1px solid rgba(4, 240, 118, 0.817);
  border-radius: 3px;
  padding: 10px;
}
.createBtn:hover {
  text-decoration: none;
  color: #182f25;
  background: #eab129;
  background: linear-gradient(to bottom, #eab129 0%, #fbcb58 50%, #d89f18 51%, #fbcb58 100%) !important;
}

.register-benefits-wrapper {
  background-color: #1e7b54;
  padding: 15px;
  border-radius: 10px;
}

.register-benefits-title {
  font-size: 18;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  background-color: #eab129;
  text-align: center;
  padding: 5px 15px;
  border-radius: 50px;
}

.register-benefits-list ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.register-benefits-list ol {
  margin-bottom: 0;
  padding-left: 20px;
}
.register-benefits-list li {
  margin-bottom: 5px;
}
.register-benefits-list li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .register-item-wrapper .row {
    flex-direction: column-reverse;
  }
  .register-item {
    width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .register-item-wrapper .row {
    flex-direction: column-reverse;
  }
  .register-item {
    width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 576px) {
  .register-section {
    padding-top: 0;
  }
  .register-item {
    width: 100%;
  }
}/*# sourceMappingURL=register.css.map */