/*--------------------------------------------------------------
# Register Page
--------------------------------------------------------------*/
.registration {
    width: 100%;
    height: 100%;
    background: #0c0d0f;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    /*display: flex;*/
    /*flex-flow: row nowrap;*/
    /*justify-content: center;*/
    /*align-items: center;*/

}

/*.register-section {*/
/*    width: 1280px;*/
/*    !*height: 712px;*!*/
/*    !*height: 3720px;*!*/
/*    display: flex;*/
/*    flex-flow: row nowrap;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

.left-section {
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
}

.left-section .brand {
    margin-bottom: 24px;
}

.left-section h1 {
    /*font-family: var(--tedlife-font-two);*/
    /*font-size: 48px;*/
    /*line-height: 58px;*/
    /*vertical-align: middle;*/
    /*text-transform: uppercase;*/
    /*font-weight: 600;*/
    /*leading-trim: none;*/
    /*color: white;*/
}

.left-section p {
    /*font-family: var(--tedlife-font);*/
    /*font-size: 16px;*/
    /*line-height: 30px;*/
    /*font-weight: 400;*/
    /*color: #ffffff;*/
}

.right-section {
    /*width: 675px;*/
    /*height: 712px;*/
    /*height: 100%;*/
    /*background: #ffffff;*/
    /*border-radius: 36px;*/
    /*padding: 60px;*/
    /*flex-shrink: 0;*/
}

.right-section h1 {
    font-family: var(--tedlife-font-two);
    font-size: 48px;
    line-height: 58px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 600;
    leading-trim: none;
    color: #121212;
}

.right-section label {
    font-family: var(--tedlife-font);
    font-size: 14px;
    color: #616368;

}


.nationality-select {
    -webkit-appearance: none;
    padding: 10px 20px;
    width: auto;
    border: 1px solid #e8eaed;
    border-radius: 5px;
    background: #fff;
    /*box-shadow: 0 1px 3px -2px #9098a9;*/
    cursor: pointer;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    transition: all 150ms ease;
    display: block;

    height: 58px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--tedlife-gray-rgb), .2);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--tedlife-gray);
    display: block;
    border-radius: var(--tedlife-bdr-radius);
    position: relative;
}

.nationality-select-options {
    position: absolute;
    width: 100%;
    height: 200px;
    background: #000;
    z-index: 10000;
    left: 0px;
    top: 58px;
}


.nationality-select :required:invalid {
    color: #5a667f;
    font-size: 14px;     /* same as text-[14px] */
  font-weight: 400;
}

.nationality-select option {
    color: #223254;
}

.nationality-select option[value=""][disabled] {
    display: none;
}

.nationality-select :focus {
    outline: none;
    border-color: #07f;
    box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.2);
}

.nationality-select :hover {
    border-color: #07f;
}

.contact-page__input-box input[type="text"], .contact-page__input-box input[type="email"], .contact-page__input-box .nice-select {
    height: 56px;
}
.contact-page__input-box input::placeholder {
  font-size: 14px;     /* same as text-[14px] */
  font-weight: 400;    /* same as fw-normal */
}


.custom-checkbox {
    position: relative;
    top: 1px;
}

.custom-checkbox:checked {
    background-color: #DFC66F; /* ✅ 选中背景色 */
    border-color: #DFC66F; /* ✅ 边框同步 */
    position: relative;
}

.custom-checkbox:checked::after {
    /*content: "✔"; !* 勾号 *!*/
    color: white; /* 勾号颜色 */
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.select2-container--default .select2-selection--single {
    border-color: rgba(97, 99, 104, 0.2) !important;
    height: 56px !important;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 16px;

}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    margin-top: -14px;
    right: 16px;
}

.select2-search--dropdown {
    display: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #84818A transparent transparent transparent;
}

.select2-container {
    /*width: 100% !important;*/
    display: block;
}

.contact-page__input-box .nice-select:after {
    left: 20px !important;
}

.contact-page__input-box .nice-select {
    text-align: right !important;
}

.contact-page__input-box .nice-select .option {
    color: #000 !important;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background: gray !important;
    color: #000 !important;
}

.contact-page__input-box .nice-select .list {
    max-height: 200px;
    overflow: auto;
}


.contact-page__input-box .nice-select .list {
    --tedlife-base: #ffffff !important;
    background: #ffffff !important;
}

.contact-page__input-box .nice-select .option {
    color: #000 !important;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background: #F5F5F5 !important;
    color: #000 !important;
}


#termsAccepted-error {
    position: absolute;
    top: 35px;
    right: 0;
    font-size: 14px;       /* same as text-[14px] */
    font-weight: 400; 
}

form .error {
    color: red;
    font-size: 12px !important;       /* same as text-[14px] */
    font-weight: 400; 
}

.label-cbx a {
  pointer-events: auto;   /* allow clicking links */
  cursor: pointer;        /* show link cursor */
}
.label-cbx {
    user-select: none;
    cursor: pointer;
    /* margin-bottom: 0; */
}
.label-cbx input {
  cursor: pointer;
}
.label-cbx input:checked + .checkbox {
    border-color: #DFC66F;
}

.label-cbx input:checked + .checkbox svg path {
    fill: #DFC66F;
}

.label-cbx input:checked + .checkbox svg polyline {
    stroke-dashoffset: 0;
}

.label-cbx:hover .checkbox svg path {
    stroke-dashoffset: 0;
}

.label-cbx .checkbox {
    position: relative;
    top: 2px;
    float: left;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    border: 1px solid #C8CCD4;
    border-radius: 3px;
}

.label-cbx .checkbox svg {
    position: absolute;
    top: -1px;
    left: -1px;
}

.label-cbx .checkbox svg path {
    fill: none;
    stroke: #DFC66F;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 71px;
    stroke-dashoffset: 71px;
    transition: all 0.6s ease;
}

.label-cbx .checkbox svg polyline {
    fill: none;
    stroke: #FFF;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 18px;
    stroke-dashoffset: 18px;
    transition: all 0.3s ease;
}

.label-cbx > span {
    pointer-events: none;
    vertical-align: middle;
}

.cntr {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    text-align: center;
}

.invisible {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    opacity: 0;
}

select option[disabled][selected] {
  color: #9ca3af; /* Tailwind's gray-400 or custom light gray */
}
 
/* Placeholder shown in the select box */
 .nice-select .current {
  color: #9ca3af; /* gray */
    font-size: 14px;     /* same as text-[14px] */
  font-weight: 400;  
}

/* When user selects an option (not placeholder) */
.nice-select.has-value .current {
  color: #212529; /* black */
}
.error-message {
  font-size: 12px;       /* same as text-[14px] */
  font-weight: 400;      /* regular weight */
  color: red;
  display: none;         /* hidden by default */
}

.choices {
  margin-bottom: 0px !important;
}
/* Input box styling */
.choices__inner {
  margin-bottom: 0px !important;
  border-radius: 8px !important;      /* rounded corners */
  background-color: #ffff!important; /* light gray bg */
  border: 1px solid rgba(var(--tedlife-gray-rgb), .2) !important;   /* subtle border */
  padding: 10px;
}

/* Dropdown list */
 

/* Dropdown items */
.choices__item--choice {
  padding: 10px;
  font-size: 14px;
}

/* Hover effect */
.choices__item--choice:hover {    /* rounded corners */
  background-color: #ffff;
  color: #000;
}

/* Highlight selected option */
.choices__item--choice.is-selected {
  color: #000;
}
.choices__list--dropdown {
  z-index: 2000!important;
  border-radius: 12px !important;
  border: 1px solid #0000001A !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  overflow-y: auto !important;  /* keep scroll but transparent */
}

/* Chrome/Edge/Safari scrollbar */
.choices__list--dropdown::-webkit-scrollbar {
  width: 6px !important;       /* slim scrollbar */
}
 
.choices__list--dropdown::-webkit-scrollbar-thumb {
  border-radius: 6px !important;
}
.choices__list--dropdown::-webkit-scrollbar-thumb:hover {
  background: #aaa !important; /* darker on hover */
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  z-index: 9999 !important;
  position: relative; /* or absolute if needed */
}
 
/* When dropdown is open (rotate arrow) */
 /* Dropdown arrow (caret) */
.choices[data-type*="select-one"]::after {
  color: #999 !important; /* grey arrow */
}

/* Optional: keep same color when open */
.choices[data-type*="select-one"].is-open::after {
  color: #999 !important;
}
/* Default arrow (down) */
.choices[data-type*="select-one"]::after {
  border-color: #999 transparent transparent !important; /* grey arrow */
}

/* Arrow when open (up) */
.choices[data-type*="select-one"].is-open::after {
  border-color: transparent transparent #999 !important; /* grey arrow when open */
}
.choices.rtl {
  direction: rtl !important;
  text-align: right !important;
}

.choices.rtl .choices__list--dropdown {
  right: 0 !important;
  left: auto !important;
}

/* Container wraps everything */
/* Main wrapper */
.hero-section {
  position: relative !important;
  min-height: 100vh !important;  /* full screen height */
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;   /* only hides background overflow, not page scroll */
}

.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background: url('../../../assets/images/backgrounds/feature-one-bg.webp') no-repeat center center;
  background-size: cover !important;
  z-index: -1;
}
/* Background image */
 
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Shadow overlay */
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7); /* soft shadow edges */
  pointer-events: none; /* allow clicks through */
}

/* Text */
.hero-title {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
.hero-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  max-width: 475px;
  margin: 0 auto;
}

/* Form box */
.hero-form {
  position: relative;
  z-index: 2;
}
.form-title {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.custom-cursor__cursor,
.custom-cursor__cursor-two {
  pointer-events: none;
  overflow: hidden; /* here is safe */
}