* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: acumin-pro, sans-serif;
  line-height: 1.333;
  line-height: 1.333;
  color: #1d252c;
  background-color: #f9fafa;
}

h1 {
  margin: 0 0 3rem;
  font-size: 3.25rem;
  line-height: 1.077;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h1 span {
  position: relative;
  display: inline-block;
}

h1 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 116%;
  padding-bottom: 46%;
  margin-top: 2%;
  background: url("../assets/images/bg-circle.svg") no-repeat center center /
    contain;
}

[lang="pt"] h1 span::before,
[lang="es"] h1 span::before {
  width: 140%;
  padding-bottom: 61%;
}

[lang="kr"] h1 span::before {
  width: 156%;
  padding-bottom: 61%;
}

h2,
.thankyou-content h1 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}

h2 {
  margin: 0 0 2.5rem;
  color: #6a6f74;
}

p,
ul {
  margin: 0;
}

a {
  color: #6a6f74;
}

form {
  margin: 0;
}

label {
  display: none;
}

button,
input {
  appearance: none;
  width: 100%;
  padding: 1.1875rem 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgb(29 37 44);
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5rem;
}

input:active,
input:focus {
  box-shadow: rgb(228, 229, 230) 0px 0px 0px 4px;
}

input.btn:focus {
  outline: none;
  border: none;
  border-radius: 2px;
}

button {
  box-sizing: border-box;
  display: inline-flex;
  height: 4rem;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #1d252c;
  color: #f9fafa;
  cursor: pointer;
}

.startNowButton {
  box-sizing: border-box;
  display: inline-flex;
  height: 4rem;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #1d252c;
  color: #f9fafa;
  cursor: pointer;
}

button > div {
  height: 1.5rem;
}

button > div > div {
  display: flex;
  flex-direction: column;
  /* transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);*/
}

button:focus > div {
  border-bottom: 0px solid #f9fafa;
}

.btn-submit:disabled {
  background: #ccc;
}

input::placeholder {
  color: rgb(140, 147, 147);
}

.hidden {
  display: none;
}

.layout {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.header {
  padding: 1rem 0;
  background-color: #1d252c;
}

.signup-logo {
  display: block;
  width: 140px;
  height: auto;
}

.signup-form .signup-logo {
  margin-bottom: 2.5rem;
}

.login {
  font-size: 1.125rem;
  line-height: 1.333;
  color: #6a6f74;
}

.form-field.name {
  margin-bottom: 1.5rem;
}

.form-field.email {
  margin-bottom: 1.5rem;
}

.error-message {
  margin: 0.25rem 0;
  font-size: 0.75rem;
  color: #ff0102;
  margin-bottom: 15px;
}

.error input {
  border-color: #ff0102;
}

.terms-of-service {
  margin: 1.5rem 0 1rem;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.333;
  color: #6a6f74;
}

.signup-form {
  margin-bottom: 2.5rem;
}

.signup-content {
  padding: 3rem 0 0;
}

.signup-content--narrow {
  max-width: 32rem;
  margin: 0 auto;
}

.signup-text ul {
  list-style: none;
  padding: 20px 0 0 0;
  margin-left: -30px;
}

.signup-text li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6a6f74;
  background-image: url(../assets/images/tick.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position-y: 4px;
}

.signup-text li:last-child {
  margin-bottom: 0;
}

.signup-text li span {
  display: block;
  color: #1d252c;
}

.footer {
  padding: 2.5rem 0;
  color: #898e91;
  background-color: #1d252c;
}

.footer a {
  color: #898e91;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0.75rem;
  padding: 0;
}

.footer li {
  margin-bottom: 0.75rem;
}

.footer li:not(:last-child) {
  margin-right: 1.5rem;
}

.footer .links a {
  color: #6a6f74;
}

.copyright {
  margin-bottom: 1.5rem;
}

.legal {
  font-size: 0.875rem;
}

.grecaptcha-badge {
  display: none;
}

.thankyou-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 5rem 0;
}

.thankyou-content p {
  font-size: 1rem;
}

.progress-dots {
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.line {
  background-color: rgb(238, 239, 239);
  width: 100%;
  height: 2px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.dot {
  height: 8px;
  width: 8px;
  border-radius: 8px;
  margin-top: -3px;
  background-color: rgb(203, 207, 207);
}

.complete {
  background-color: #1ce783;
}

.dot-labels {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.dot-label {
  min-width: 80px;
}

.dot-label-incomplete {
  color: rgb(142, 148, 148);
}

.dot-label-center {
  text-align: center;
}

.dot-label-right {
  text-align: right;
}

@media only screen and (min-width: 48em) {
  span:focus-visible {
    outline: none !important;
  }
}

@media only screen and (min-width: 48em) {
  body .signup {
    color: #f9fafa;
    background-color: #1d252c;
  }
  h1 {
    width: 80%;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    color: #1d252c;
  }
  h1 span::before {
    width: 121%;
    padding-bottom: 48%;
    margin-top: 0;
  }
  h2 {
    position: relative;
    padding: 0;
    margin-bottom: 7rem;
    padding-left: 2rem;
    color: #898e91;
  }
  h3 {
    position: relative;
    padding: 0;
    margin-bottom: 1rem;
    color: #898e91;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.3rem;
  }
  h2::after {
    content: "";
    position: absolute;
    right: 85%;
    top: 105px;
    width: 104px;
    height: 104px;
    background: url("../assets/images/bg-arrow.svg") center center / contain;
  }
  .signup-form .logo {
    margin-bottom: 4rem;
  }
  .signup-content {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    min-height: 100vh;
  }
  .signup-form {
    grid-column: 1/8;
    padding: 2.5rem;
    margin-bottom: 0;
    background-color: #f9fafa;
    border-radius: 16px;
    box-shadow: 0px 4px 32px rgba(84, 86, 90, 0.16);
  }
  .signup-content--narrow .signup-form {
    grid-column: 1/-1;
  }
  .terms-of-service {
    margin-bottom: 1.125rem;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }
  .terms-of-service a {
    display: inline-block;
  }
  .login {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .signup-text {
    grid-column: 9/-1;
  }
  .signup-text li {
    color: #898e91;
  }
  .signup-text li::before {
    background-color: #f9fafa;
  }
  .signup-text li span {
    color: #f9fafa;
  }
}

@media only screen and (min-width: 62em) {
  body {
    font-size: 1.125rem;
  }
  .signup-form {
    grid-column: 2/8;
  }
  .signup-text {
    grid-column: 9/12;
    padding-top: 30px;
  }
  .links,
  .legal {
    display: flex;
    justify-content: space-between;
  }
  .links ul:first-child {
    order: 2;
  }
  .copyright {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 47.938em) {
  .signup-text {
    margin-left: -40px;
    margin-right: -40px;
    padding: 40px;
    background-color: #f1f2f2;
  }
}

.one-core-simple-form {
  margin: 20px 0;
  width: 450px;
  min-height: 450px;
}

.one-core-simple-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  /* min-height: 100vh;*/
  margin-bottom: 60px;
  font-weight: normal;
  text-transform: none;
  color: #293338;
}

.one-core-simple-form .form-contents label {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  background: transparent;
}

.one-core-simple-form .heading-main {
  font-weight: 600;
  margin-top: 24px;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
}

.one-core-simple-form .form-contents input[type="text"],
.one-core-simple-form .form-contents input[type="email"],
.one-core-simple-form .form-contents input[type="number"],
.one-core-simple-form .form-contents input[type="password"] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e0e4e4;
  margin-top: 4px;
  margin-bottom: 15px;
  padding-bottom: 0px;
  font-size: 12px;
  background: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0px;
}

input:active,
input:focus {
  box-shadow: none !important;
}

.one-core-simple-form .form-contents .submit-button:hover,
.one-core-simple-form .form-contents .submit-button:focus {
  background: #16d376;
}

.one-core-simple-form .form-contents .submit-button {
  margin-top: 32px;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0.25rem;
  text-decoration: none;
  background-color: #1ce783;
  color: black;
  cursor: pointer;
  text-align: center;
  font-weight: normal;
  font-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background 125ms ease-in-out, transform 125ms ease;
}

.one-core-simple-form .status-heading {
  margin-top: 16px;
  font-size: 12px;
}

.one-core-simple-form .passwor-message {
  margin-top: 0;
  font-size: 12px;
}

.one-core-simple-form .checkmark {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 2px;
  background-image: url(../assets/images/confirm-tick.svg);
}

@media only screen and (max-width: 500px) {
  .one-core-simple-form {
    width: 300px;
  }
}

/*///////////////// form item styles ///////////////////////*/
.input-cols {
  display: flex;
  flex-direction: column;
}
.input-cols > * {
  flex-basis: 100%;
}

.one-core-simple-form .main-subheads {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
      margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 1px dotted;
}
.mt-20 {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .width-900 {
    width: 100%;
    max-width: 56rem !important;
  }
  .mt-20 {
    margin-top: 0px !important;
  }
  .input-cols {
    flex-direction: row;
  }
  .pr-40 {
    padding-right: 40px;
  }
  .pl-40 {
    padding-left: 40px;
  }
}
.select {
  position: relative;
  display: flex;
  width: 100%;
  line-height: 3;
  background: transparent !important;
  overflow: hidden;
  border-radius: 0.25em;
  flex-direction: column;
  margin-top: 15px;    
}


/* Jan 6, 2025 JDK17 Signup UI Fix - Alex Bernatowicz */
/* Fix dropdown height - override line-height for selectOneMenu */
.select.ui-selectonemenu {
  line-height: normal !important;
  margin-top: 0 !important;
}

/* Use standard v3 dropdown styles, just override height and styling for signup */
.v3 .select.ui-selectonemenu {
  min-height: 31px !important;
  max-height: 31px !important;
  margin-top: 4px !important;
  margin-bottom: 15px !important;
  border-color: #e0e4e4 !important;
  background: transparent !important;
}

.v3 .select.ui-selectonemenu .ui-selectonemenu-label {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  padding-top: 0.4rem !important;
  font-weight: bold !important;
  font-size: 12px !important;
}

.v3 .select.ui-selectonemenu .ui-selectonemenu-trigger {
  background-color: #f9fafa !important;
  border-left: 1px solid #A3A3A3 !important;
  clip-path: inset(5px 0px 5px 0px) !important;
}

.v3 .select.ui-selectonemenu .ui-selectonemenu-trigger .ui-icon:before {
  background-color: #f9fafa !important;
}

/* Style the dropdown panel filter/search box to match biz group */
.v3 .select.ui-selectonemenu + .ui-selectonemenu-panel .ui-selectonemenu-filter,
.ui-selectonemenu-panel[id*="country"] .ui-selectonemenu-filter,
.ui-selectonemenu-panel[id*="state"] .ui-selectonemenu-filter {
  min-height: 30px !important;
  height: 30px !important;
  padding: 5px 15px 5px 25px !important;
}

.v3 .select.ui-selectonemenu + .ui-selectonemenu-panel .ui-selectonemenu-filter-container,
.ui-selectonemenu-panel[id*="country"] .ui-selectonemenu-filter-container,
.ui-selectonemenu-panel[id*="state"] .ui-selectonemenu-filter-container {
  min-height: 30px !important;
  height: 30px !important;
  margin-bottom: 10px !important;
  padding-bottom: 10px !important;
}

/* Override base v3 styles for signup page dropdown search icons - position correctly in 30px height box */
.ui-selectonemenu-panel[id*="country"].ui-widget.ui-widget-content .ui-selectonemenu-filter-container .ui-icon.ui-icon-search,
.ui-selectonemenu-panel[id*="state"].ui-widget.ui-widget-content .ui-selectonemenu-filter-container .ui-icon.ui-icon-search,
.ui-selectonemenu-panel[id*="signupCompleteForm"].ui-widget.ui-widget-content .ui-selectonemenu-filter-container .ui-icon.ui-icon-search {
  left: 12px !important;
  top: 11px !important;
}

.ui-selectonemenu-panel .ui-selectonemenu-list {
	font-size: 12px !important;
}  

.ui-inputfield {
	box-shadow: none !important;
} 
.thankyou-content .thankyou-content-innerwrap {
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
}
.thankyou-content-innerwrap .thank-content-img {
  width: 400px;
  padding: 0 20px;
}
.thankyou-content .thankyou-content-right {
  flex: 100%;
  padding: 40px 20px 0 20px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 47.938em) {
  .thankyou-content {
    padding: 3rem 0;
  }
  .thankyou-content-innerwrap .thank-content-img {
    width: 233px;
  }
  .thankyou-content .thankyou-content-innerwrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .h2,
  .thankyou-content h1,
  .thankyou-content p {
    text-align: center;
  }
  .h2,
  .thankyou-content h1 {
    margin-bottom: 10px;
  }
}

.thankyou-content-innerwrap .authorization h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #0260be;
  text-transform: uppercase;
}
.thankyou-content-right .p-wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.password-info-box {
    background-color: #f2f2f2;
    border-left: 4px solid #ccc;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 12px;
    color: #0101046e;
    max-width: fit-content;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding-right: 56px;
}

.password-info-box i {
    color: #0101046e;
    font-size: 15px;
}

.password-info-box ul {
    padding-left: 20px;
    margin: 5px 0;
}