/* ==========================================================================
   #FONT
   ========================================================================== */
   .font-nunito {
    font-family: 'Nunito';
  }
  
  /* ==========================================================================
         #GRID
         ========================================================================== */
  .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .row-space {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .col-2 {
    width: -webkit-calc((100% - 60px) / 2);
    width: -moz-calc((100% - 60px) / 2);
    width: calc((100% - 60px) / 2);
  }
  
  @media (max-width: 767px) {
    .col-2 {
      width: 100%;
    }
  }
  
  /* ==========================================================================
         #BOX-SIZING
         ========================================================================== */
  /**
       * More sensible default box-sizing:
       * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
       */
  html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  * {
    padding: 0;
    margin: 0;
  }
  
  *,
  *:before,
  *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
  }
  
  /* ==========================================================================
         #RESET
         ========================================================================== */
  /**
       * A very simple reset that sits on top of Normalize.css.
       */
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  blockquote,
  p,
  pre,
  dl,
  dd,
  ol,
  ul,
  figure,
  hr,
  fieldset,
  legend {
    margin: 0;
    padding: 0;
  }
  
  /**
       * Remove trailing margins from nested lists.
       */
  li > ol,
  li > ul {
    margin-bottom: 0;
  }
  
  /**
       * Remove default table spacing.
       */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /**
       * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
       *    on fieldsets.
       */
  fieldset {
    min-width: 0;
    /* [1] */
    border: 0;
  }
  
  button {
    outline: none;
    background: none;
    border: none;
  }
  
  /* ==========================================================================
         #PAGE WRAPPER
         ========================================================================== */
  .page-wrapper {
    min-height: 100vh;
  }
  
  body {
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 14px;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 400;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  h4 {
    font-size: 18px;
  }
  
  h5 {
    font-size: 15px;
  }
  
  h6 {
    font-size: 13px;
  }
  
  /* ==========================================================================
         #BACKGROUND
         ========================================================================== */
  .bg-blue {
    background: #2c6ed5;
  }
  
  .bg-red {
    background: #fa4251;
  }
  
  /* ==========================================================================
         #SPACING
         ========================================================================== */
  .p-t-100 {
    padding-top: 100px;
  }
  
  .p-t-110 {
    padding-top: 110px;
  }
  
  .p-t-20 {
    padding-top: 20px;
  }
  
  .p-t-10 {
    padding-top: 10px;
  }
  
  .p-t-30 {
    padding-top: 30px;
  }
  
  .p-b-100 {
    padding-bottom: 100px;
  }
  
  .p-t-20 {
    padding-bottom: 20px;
  }
  
  /* ==========================================================================
         #WRAPPER
         ========================================================================== */
  .wrapper {
    margin: 0 auto;
  }
  
  .wrapper--w960 {
    max-width: 960px;
  }
  
  .wrapper--w780 {
    max-width: 960px;
  }
  
  .wrapper--w680 {
    max-width: 680px;
  }
  
  /* ==========================================================================
         #BUTTON
         ========================================================================== */
  .btn {
    display: inline-block;
    line-height: 40px;
    padding: 0 33px;
    font-family: 'Nunito';
    cursor: pointer;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-size: 18px;
  }
  
  .btn--radius {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  
  .btn--pill {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
  
  .btn--green {
    background: #57b846;
  }
  
  .btn--green:hover {
    background: #4dae3c;
  }
  
  .submit {
    width: 100%;
    height: 36px;
    border-radius: 30px;
    background-color: #a1e887;
    font-size: 18px;
    font-style: normal;
    text-align: center;
    color: #ffffff;
    border-style: none;
    cursor: pointer;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  }
  
  /* ==========================================================================
         #FORM
         ========================================================================== */
  input {
    outline: none;
    margin: 0;
    border: 0.5px solid #a7a0b3;
    border-radius: 2px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /* width: 100%; */
    font-size: 14px;
    font-family: 'Nunito';
  }
  
  .input-icon {
    position: absolute;
    font-size: 18px;
    color: #ccc;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
  }
  
  .input-group {
    position: relative;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .input-group-register {
    position: relative;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .input-reset {
    position: relative;
    max-width: 350px;
    width: 100%;
    margin-top: 10px;
  }
  
  .input--style-3 {
    border-radius: 8px;
    padding: 10px 10px;
    font-size: 16px;
    color: #000;
    background: #ffffff;
  }
  
  .input--style-3::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #ccc;
  }
  
  .input--style-3:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #ccc;
    opacity: 1;
  }
  
  .input--style-3::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #ccc;
    opacity: 1;
  }
  
  .input--style-3:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ccc;
  }
  
  .input--style-3:-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ccc;
  }
  
  .input-width {
    width: 100%;
  }
  
  .input-width-change {
    width: 80%;
  }
  
  /* ==========================================================================
         #SELECT2
         ========================================================================== */
  .select--no-search .select2-search {
    display: none !important;
  }
  
  .rs-select2 .select2-container {
    width: 100% !important;
    outline: none;
  }
  
  .rs-select2 .select2-container .select2-selection--single {
    outline: none;
    border: none;
    height: 36px;
    background: transparent;
  }
  
  .rs-select2 .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    padding-left: 0;
    color: #ccc;
    font-size: 16px;
    font-family: inherit;
  }
  
  .rs-select2 .select2-container .select2-selection--single .select2-selection__arrow {
    height: 34px;
    right: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .rs-select2 .select2-container .select2-selection--single .select2-selection__arrow b {
    display: none;
  }
  
  .rs-select2 .select2-container .select2-selection--single .select2-selection__arrow:after {
    font-family: 'Material-Design-Iconic-Font';
    content: '\f2f9';
    font-size: 18px;
    color: #ccc;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .rs-select2 .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  
  .select2-container--open .select2-dropdown--below {
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    margin-top: 5px;
    overflow: hidden;
  }
  
  /* ==========================================================================
  #TITLE
  ========================================================================== */
  .title-and-logo {
    text-align:center;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
  .title {
    font-size: 42px;
    color: #5c3a58;
    margin-left: 15px;
    margin-top: -3px;
    font-variant: all-small-caps;
  }
  
  /* ==========================================================================
         #CARD
         ========================================================================== */
  .div-box {
    padding: 100px 0 50px;
  }
  
  .card {
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    position: relative;
  }
  
  .card-3 {
    background: #ffffff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    display: table;
  }
  
  .card-3 .card-heading {
    /* background-color: #4dae3c; */
    /* background: url('${url.resourcesPath}/img/1.jpg') top left/cover no-repeat; */
    display: table-cell;
    width: 50%;
  }
  
  .card-3 .card-body {
    padding: 57px 65px;
    padding-bottom: 65px;
    display: table-cell;
  }
  
  .card-register {
    width: 100%;
    padding: 30px 65px;
    /* display: table-cell; */
  }
  
  @media (max-width: 767px) {
    .card-3 {
      display: block;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
    }
  
    .card-3 .card-heading {
      display: none;
      /* width: 100%; */
      padding-top: 0;
      /* background-position: center center; */
    }
  
    .card-3 .card-body {
      display: block;
      width: 100%;
      padding: 37px 30px;
      padding-bottom: 45px;
    }
  
    .div-box {
      padding-top: 0;
    }
  }
  
  /* ==========================================================================
         #SocailLogin Button
         ========================================================================== */
  .click-other-login {
    font-family: 'Roboto';
    font-weight: 500;
    color: rgba(0, 0, 0, 54%);
    width: 100%;
    padding: 10px 8px;
    height: 40px;
    margin: 15px 0;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #a8a8aa;
    font-size: 14px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
  }
  
  .button-box {
    text-align: center;
    margin: 20px 0;
  }
  
  .msg-button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #c4c4c4;
    border-radius: 15px;
  }
  
  .add-account {
    background: #a1e887;
  }
  
  .review-profile {
    background: #3facde;
    color: #fff;
  }
  
  label {
    line-height: 2;
    font-family: sans-serif;
  }
  
  p {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 10px 0 20px;
  }
  
  p span {
    background: #fff;
    padding: 0 10px;
  }
  
  .toggle {
    background: none;
    border: none;
    font-weight: 600;
    color: #a7a0b3;
    position: absolute;
    right: 0.75em;
    top: 32px;
    z-index: 9;
  }
  
  .fa {
    font-size: 20px !important;
  }
  
  .instruction {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    padding: 0 10px;
    border-bottom: none;
    line-height: 30px;
    font-size: 16px;
  }
  
  .message-text {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #eb445a;
    color: #fff;
  }
  
  /*---------------------------------------------*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0px;
  }
  
  p {
    font-family: 'Nunito';
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
  }
  
  ul,
  li {
    margin: 0px;
    list-style-type: none;
  }
  
  /*---------------------------------------------*/
  button {
    outline: none !important;
    border: none;
    background: transparent;
  }
  
  button:hover {
    cursor: pointer;
  }
  
  iframe {
    border: none !important;
  }
  
  /*//////////////////////////////////////////////////////////////////
    [ Utility ]*/
  .txt1 {
    font-family: 'Nunito';
    font-size: 13px;
    line-height: 1.4;
    color: #999999;
  }
  
  /*//////////////////////////////////////////////////////////////////
    [ login ]*/
  
  .limiter {
    width: 100%;
    margin: 0 auto;
  }
  
  .container-vf {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
  }
  
  .wrap-vf {
    /* width: 670px; */
    background: #fff;
    /* border-radius: 10px; */
    overflow: hidden;
    /* position: relative; */
    /* -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15); */
  }
  
  /*==================================================================
    [ Title form ]*/
  .vf-form-title {
    width: 100%;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  
    padding: 40px 15px;
  }
  
  .vf-form-title-1 {
    font-family: 'Nunito';
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    padding-top: 15px;
  }
  
  /* .vf-form-title::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f0e3f4;
  } */
  
  /*==================================================================
    [ Form ]*/
  
  .vf-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 43px 88px 93px 190px;
  }
  
  /*------------------------------------------------------------------
    [ Button ]*/
  .container-vf-form-btn {
    width: 100%;
  }
  
  .vf-form-btn {
    position: relative;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    background-color: #a1e887;
    border-radius: 25px;
    margin-bottom: 15px;
  
    font-size: 16px;
    color: #32345b;
    line-height: 1.2;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .vf-form-btn:hover {
    background-color: #70cc4f;
  }
  
  /*------------------------------------------------------------------
    [ Responsive ]*/
  
  @media (max-width: 576px) {
    .vf-form {
      padding: 43px 15px 57px 117px;
    }
  }
  
  @media (max-width: 480px) {
    .vf-form {
      padding: 43px 15px 57px 15px;
    }
  
    .label-input100 {
      text-align: left;
      position: unset;
      top: unset;
      left: unset;
      width: 100%;
      padding: 0 5px;
    }
  }
  
  a:-webkit-any-link {
    text-decoration: none;
  }
  
  /* 条款 css */
  .terms-of-service {
    padding: 10px 25px;
  }
  
  .terms-title {
    font-size: 24px;
    font-weight: bold;
    color: #32345b;
    text-align: center;
    padding: 20px 0;
  }
  
  .service-title {
    font-size: 18px;
    font-weight: bold;
    color: #a1e887;
  }
  
  .terms-content {
    font-size: 16px;
  }
  
  .mtb-1 {
    margin: 10px 0;
  }
  
  .mb-1 {
    margin-bottom: 10px;
  }
  
  .mb-2 {
    margin-bottom: 20px;
  }
  
  .mt-4 {
    margin-top: 40px;
  }
  
  .fong-w {
    font-weight: bold;
  }
  
  .table-font {
    margin-left: 25px;
  }
  
  .service-form {
    /* border: 4px solid #a1e887; */
    /* border-radius: 15px; */
    max-height: 600px;
    overflow-y: scroll;
    /* margin: 0 20px; */
  }
  
  .form-actions {
    text-align: center;
    margin: 20px 0;
  }
  
  .update-profile-tip {
    margin-bottom: 15px;
  }
  
  .service-button {
    cursor: pointer;
    font-size: 16px;
    padding: 10px 35px;
    border-radius: 15px;
  }
  
  #kc-accept {
    background: #a1e887;
    margin-left: 20px;
  }
  
  .language-box {
    float: right;
  }
  
  .language-list {
    z-index: 200;
    width: 100px;
    display: none;
    position: absolute;
    border: 1px solid #999999;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .language-title {
    padding: 10px 0 5px;
    width: 100px;
    text-align: center;
  }
  
  .language-a {
    background: #ffffff;
  }
  
  .language-a a {
    padding: 8px 15px;
    display: block;
    width: 100%;
    color: #333333;
  }
  
  .language-a:hover {
    background-color: #a1e887;
  }
  
  .language-active {
    background-color: #a1e887;
  }
  
  .language-box:hover .language-list {
    display: block;
  }
  
  .container-vf {
    position: relative;
  }
  
  .form-group {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  
  @media (max-width: 767px) {
    .service-form {
      height: calc(100vh - 160px);
    }
  }
  
  .disabled {
    background-color: grey;
  }
  
  
  .yt-logo-text {
    font-size: 30px;
    font-weight: bold;
    background-image: -webkit-linear-gradient(
      50deg,
      #6e4272,
      #9370db,
      #3e2e44 75%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* 注册按钮 */
  .register-button {
    text-align:center;
    width: 100%;
    border:1px solid #3facde;
    border-radius: 30px;
    font-size: 18px;
    padding: 5px 0;
    margin: 0 auto;
    margin-top: 15px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    a {
      display: inline-block;
      width: 100%;
      height: 100%;
    }
  }

  .text-flex {
    display: flex;
    justify-content:space-between;
    margin-top: -7px;
  }

.social-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background-color: #a8a8aa;
}
.divider-text {
  font-size: 14px;
  color: #999;
  font-weight: 500;
  white-space: nowrap;
}
.social-login-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #a8a8aa;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.social-icon-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: #666;
}
.social-icon-btn:active {
  transform: scale(0.95);
}
.social-icon-btn.disabled {
  background-color: grey;
  pointer-events: none;
}

.register-prompt {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #999;
}
.register-prompt a {
  color: #a1e887;
  font-weight: 500;
  text-decoration: underline;
}

.register-prompt a:hover{
  color: #32345B;
}

.link-back{
  color: #3FACDE;
}