.flex-row-center {
  display: flex;
  align-items: center;
}
.register-section {
  background: #FAFAFA;
  padding: 3rem 5rem;
}
.register-container {
  max-width: 57rem;
  margin: auto;
}
.register-note {
  margin-top: 2.4rem;
}
.register-note h6 {
  font-family: Matter;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
  color: #BDBDBD;
  margin: 0;
}
.register-image {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 129%;
  border-radius: 1.6rem;
}
.register-image img.ri-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
}
.register-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.ri-description {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 4.5rem 4.8rem;
}
.ri-description .logo-img {
  max-height: 3.2rem;
}
.ri-description p {
  color: #fff;
  margin: 1.6rem 0 0;
  font-family: Matter;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75rem;
  text-align: left;
}
.register-form-wrapper {
  max-width: 42.4rem;
  margin: 0 auto;
}
.register-form-wrapper h1 {
  color: #000;
  font-family: Matter;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 3.6799999999999997rem;
  text-align: left;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #E1E1E1;
  margin: 0 0 2.4rem;
}
.register-form-wrapper h1 small {
  display: block;
  color: #494949;
  font-family: Matter;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75rem;
  text-align: left;
  margin-top: 1rem;
}
.register-form-wrapper h1 small .code-not-sent {
  cursor: pointer;
  color: #4992DA;
}
.register-steps {
  display: flex;
  gap: 0.4rem;
  justify-content: space-between;
  margin-bottom: 3.2rem;
}
.rs-item {
  width: calc((100% - 0.8rem) / 3);
  text-align: center;
}
.rs-item .top {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  font-family: Matter;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
  margin: 0 0 1.2rem;
}
.rs-item .rs-nr {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E1E1E1;
  font-family: Matter;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 0.875rem;
  text-align: center;
}
.rs-item .rs-nr .complete {
  position: relative;
  display: none;
}
.rs-item .rs-nr .complete:before {
  content: '';
  position: absolute;
  width: 0.7rem;
  height: 0.2rem;
  background: #3CAF75;
  transform: rotate(-45deg);
  left: -0.2rem;
}
.rs-item .rs-nr .complete:after {
  content: '';
  position: absolute;
  width: 0.4rem;
  height: 0.2rem;
  background: #3CAF75;
  transform: rotate(45deg);
  left: -0.4rem;
}
.rs-item .rs-progress {
  width: 100%;
  height: 0.8rem;
  background: #F3F3F3;
}
.rs-item .rs-progress .rs-bar {
  height: 100%;
  width: 0;
  background: #FFE700;
}
.rf-form-item {
  margin-bottom: 2.7rem;
  position: relative;
}
.rf-form-item label {
  display: block;
  font-family: Matter;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: left;
  margin: 0 0 0.8rem;
}
.rf-form-item input {
  display: block;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #BDBDBD;
  background: #FAFAFA;
  color: #242424;
  font-family: Matter;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75rem;
  text-align: left;
  outline: none !important;
}
.rf-form-item .error-msg,
.rf-form-item .error-msg-email,
.register-ch .error-msg {
  display: none;
  font-family: Matter;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1rem;
  text-align: left;
  position: absolute;
  left: 0;
  top: calc(100% + 0.4rem);
  color: #FF5837;
}
.register-ch .error-msg {
  left: 3.1rem;
  top: calc(100% + -0.2rem);
}
.rf-form-item.error-input {
  border-color: #FF5837;
}
.rf-form-item.error-input .error-msg,
.rf-form-item.error-input .error-msg-email,
.register-ch.error-input .error-msg {
  display: block;
}
.rf-form-item .error-msg-email {
  display: none;
}
.rf-form-item input.pass-input {
  padding-right: 3.6rem;
}
.rf-form-item .toggle-password {
  background: transparent;
  border: none;
  padding: 0;
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
}
.rf-form-item .toggle-password img {
  width: 2rem;
  height: 2rem;
  display: none;
}
input.pass-input[type="password"] + .toggle-password .p-hidden,
input.pass-input[type="text"] + .toggle-password .p-shown {
  display: block;
}
.register-btn {
  display: inline-block;
  width: 100%;
  padding: 1.1rem 1.4rem 0.9rem;
  border-radius: 6.2rem;
  text-align: center;
  color: #242424;
  font-family: Matter;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: -0.012em;
  border: 0.1rem solid transparent;
}
.register-btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.register-btn.yellow {
  background: #FFE700;
}
.register-btn.transparent {
  background: transparent;
  border-color: #E1E1E1;
}
.rf-login-info {
  margin: 4.8rem 0 0;
  text-align: center;
  font-family: Matter;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #6B6B6B;
}
.rf-login-info a {
  color: #4992DA;
  text-decoration: none;
}
.rf-login-info a:hover {
  color: #FFE700;
}
.rf-content {
  display: none;
}
.register-form-wrapper[data-step="1"] .rf-content[data-step="1"],
.register-form-wrapper[data-step="2"] .rf-content[data-step="2"],
.register-form-wrapper[data-step="3"] .rf-content[data-step="3"],
.register-form-wrapper[data-step="4"] .rf-content[data-step="4"],
.register-form-wrapper[data-step="5"] .rf-content[data-step="5"],
.register-form-wrapper[data-content="login"] .rf-content[data-content="login"],
.register-form-wrapper[data-content="forget_password"] .rf-content[data-content="forget_password"] {
  display: block;
}
.register-form-wrapper[data-step="1"] .rs-item[data-step="1"] .rs-bar,
.register-form-wrapper[data-step="2"] .rs-item[data-step="2"] .rs-bar,
.register-form-wrapper[data-step="3"] .rs-item[data-step="3"] .rs-bar {
  width: 30%;
}
.register-form-wrapper[data-step="2"] .rs-item[data-step="1"] .rs-bar,
.register-form-wrapper[data-step="3"] .rs-item[data-step="1"] .rs-bar,
.register-form-wrapper[data-step="3"] .rs-item[data-step="2"] .rs-bar {
  width: 100%;
}
.register-form-wrapper[data-step="2"] .rs-item[data-step="1"] .rs-nr .complete,
.register-form-wrapper[data-step="3"] .rs-item[data-step="1"] .rs-nr .complete,
.register-form-wrapper[data-step="3"] .rs-item[data-step="2"] .rs-nr .complete {
  display: block;
}
.register-form-wrapper[data-step="2"] .rs-item[data-step="1"] .rs-nr .nr,
.register-form-wrapper[data-step="3"] .rs-item[data-step="1"] .rs-nr .nr,
.register-form-wrapper[data-step="3"] .rs-item[data-step="2"] .rs-nr .nr {
  display: none;
}
.register-form-wrapper .row {
  margin-right: -0.6rem;
  margin-left: -0.6rem;
}
.register-form-wrapper .col-sm-6,
.register-form-wrapper .col-sm-12 {
  padding-right: 0.6rem;
  padding-left: 0.6rem;
}
.cp-custom-checkbox {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-family: Matter;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: left;
  color: #242424
}
.cp-custom-checkbox input[type="checkbox"] {
  display: none;
}
.cp-custom-checkbox span {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid #BDBDBD;
  border-radius: 0.3rem;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cp-custom-checkbox p {
  margin: 0;
  width: calc(100% - 2.6rem);
}
.cp-custom-checkbox p a {
  color: #4992DA;
  text-decoration: none;
}
.cp-custom-checkbox p a:hover {
  color: #FFE700;
}
.cp-custom-checkbox input[type="checkbox"]:checked + span::before {
  content: "";
  position: absolute;
  background: #000000;
  height: 0.1rem;
  width: 0.8rem;
  bottom: 0.6rem;
  right: 0.1rem;
  transform: rotate(-45deg);
}
.cp-custom-checkbox input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  background: #000000;
  height: 0.1rem;
  width: 0.4rem;
  bottom: 0.5rem;
  left: 0.3rem;
  transform: rotate(45deg);
}
.cp-custom-checkbox span:hover {
  border-color: #666;
}
.cp-custom-checkbox.check-all {
  font-weight: 500;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #E1E1E1;
}
.cp-custom-checkbox.agreement {
  margin-top: 1.6rem;
}
.mb-24 {
  margin-bottom: 2.4rem;
}
.mb-32 {
  margin-bottom: 3.2rem;
}
.mb-44 {
  margin-bottom: 4.4rem;
}
.rf-form-item input#phone {
  padding-left: 4.1rem;
}
#flag-img {
  display: none;
  width: 1.7rem;
  height: 1rem;
  position: absolute;
  left: 1.2rem;
  bottom: 1.4rem;
}
.rf-form-item select {
  padding: 0.8rem 1.2rem 0.9rem;
  background: #FAFAFA;
  border: 0.1rem solid #BDBDBD;
  color: #242424;
  font-family: Matter;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
  text-align: left;
  border-radius: 0.3rem;
  width: 100%;
}
label.check-all,
label.agreement {
  cursor: pointer;
}
.vies-status {
  padding: 0 0 0.5rem;
  font-size: 1.2rem;
  min-height: 2.5rem;
}
.vies-status-content-message {
  font-weight: bold;
}
.vies-status-content-message.success {
  color: #237c64;
}
.vies-status-content-message.processing {
  color: #b28a0a;
}
.vies-status-content-message.error {
  color: #a75b5a;
}
.cp-custom-checkbox.remember-me {
  align-items: center;
}
.login-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.4rem;
}
.login-bottom .forgot-password {
  cursor: pointer;
  color: #4992DA;
  font-family: Matter;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: left;
}
.rf-form-item.verification-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vc-wrapper {
  position: relative;
  width: 3rem;
}
.vc-wrapper input {
  padding: 0.9rem 0.6rem;
  text-align: center;
}
.rf-form-item.verification-code .vc-hr {
  width: 2.2rem;
  height: 0.1rem;
  background: #E1E1E1;
}
.login-form-col {
  display: flex;
}
.login-info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem
}
.login-info-box {
  background-color: #fff;
  padding: 3.2rem;
  border-radius: 1.6rem;
  width: 100%;
  color: #000000;
  font-family: Matter;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  box-shadow: 0 0.2rem 2rem 0 rgba(0,0,0,.2);
}
.login-info-box.half {
  width: calc((100% - 2.4rem) / 2)
}
.login-info-box h2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
}
.login-info-box p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
}
.login-info-box.full p {
  max-width: 40rem;
}
.login-info-box a {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.216px;
  color: #fff;
  background: #242424;
  padding: 1.2rem 4rem;
  border-radius: 6.2rem;
}
.login-info-box a:hover {
  background: #000;
}
@media(max-width:1400px) {
  .login-info-box {
    padding: 1.6rem;
  }
}
@media(max-width:991px) {
  .login-form-col {
    padding-bottom: 3rem;
  }
}
@media(max-width:600px) {
  .login-info-box.half {
    width: 100%;
  }
}
