/*!
 * ═══════════════════════════════════════════════════════════════════════════════
 * 🎵 Eladio Carrión - Sauce Gang Landing Page
 * ═══════════════════════════════════════════════════════════════════════════════
 * 
 * Developed by: Stoyco
 * Website: https://stoyco.io/
 * © 2026 Stoyco. All rights reserved.
 * 
 * This stylesheet is the exclusive property of Stoyco and protected by
 * intellectual property laws. Unauthorized copying, modification, or
 * distribution is strictly prohibited.
 * 
 * Architecture:
 * • CSS Custom Properties (Variables)
 * • Mobile-First Responsive Design
 * • CSS Grid & Flexbox Layouts
 * • Optimized for Performance
 * • Cross-browser Compatible
 * 
 * Built with ♥ by the Stoyco team
 * ═══════════════════════════════════════════════════════════════════════════════
 */

@import url("https://fonts.googleapis.com/css2?family=Bagel+Fat+One&family=Roboto:wght@400;500;700&family=Actor&family=Akshar:wght@300;400;500;600;700&display=swap");
:root {
  --primary-color: #000;
  --secondary-color: #000;
  --error-color: #ea2f2f;
  --surface-color: rgba(255, 255, 255, 0.92);
  --control-border-width: 1px;
  --control-border-radius: 7px;
  --page-background-desktop: url('../img/bg-tp-desktop.png');
  --page-background-mobile: url('../img/bg-tp-mobile.webp');
}

@font-face {
  font-family: "Eurostile Extended";
  src: url("../../fonts/EurostileExtendedRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.8);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.6) rgba(255, 255, 255, 0.3);
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior: none;
  width: 100%;
  height: auto;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
  html,
  body {
    position: fixed;
  }
}
body {
  background-color: #E7E7E3;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overscroll-behavior-y: none;
}

body:has(#section-email:not(.d-none)),
body:has(#section-form:not(.d-none)),
body:has(#section-ty:not(.d-none)) {
  background-color: #E7E7E3;
  background-image: var(--page-background-desktop);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.d-none {
  display: none !important;
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body:has(#section-form:not(.d-none)) .main-content {
  align-items: flex-start;
  padding: 30px 0;
}

@media (max-width: 1024px) {
  body:has(#section-email:not(.d-none)) .main-content {
    padding-top: 60px;
  }
}
.landing-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 80px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 1281px) {
  body:has(#section-email:not(.d-none)) .landing-container,
  body:has(#section-form:not(.d-none)) .landing-container,
  body:has(#section-ty:not(.d-none)) .landing-container {
    max-width: 1250px;
  }
}
.illustration-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.illustration-side img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  width: 516px;
}

#section-email .illustration-side {
  margin-bottom: 40px;
}

.form-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#section-email {
  flex: unset;
  width: 100%;
  max-width: 1250px;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 536px);
  column-gap: 110px;
  align-items: center;
  justify-content: center;
}
#section-email .illustration-side {
  margin-bottom: 0;
}
#section-email .illustration-side img {
  width: 780px;
  max-width: none;
  transform: translate(-14px, -18px);
}
#section-email .email-form-wrapper {
  width: 100%;
  max-width: 536px;
  transform: translate(4px, -50px);
}

.registration-progress {
  display: grid;
  grid-template-columns: 2.65fr repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: 47px;
}

.registration-progress__step {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.registration-progress__step--active {
  background: #000;
}

.registration-progress--form {
  grid-template-columns: 1fr 2.65fr 1fr;
  width: 100%;
  max-width: 536px;
  margin-bottom: 24px;
}

body:has(#section-form:not(.d-none)) .landing-container {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 536px);
  column-gap: 110px;
  align-items: start;
  justify-content: center;
  padding-top: 30px;
}

#illustration-side:not(.d-none) {
  width: 600px;
  align-self: start;
  margin-top: 64px;
}
#illustration-side:not(.d-none) img {
  width: 720px;
  max-width: none;
  transform: translateX(-26px);
}
#illustration-side .illustration-mobile {
  display: none;
}
#illustration-side .illustration-desktop {
  display: block;
}

#section-form {
  width: 100%;
  max-width: 536px;
  align-items: flex-start;
  padding-top: 34px;
}

@media (min-width: 769px) and (max-width: 1280px) {
  #section-email {
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.9fr);
    column-gap: 48px;
    padding: 0 40px;
  }
  #section-email .illustration-side img {
    width: min(46vw, 560px);
    max-width: 100%;
    transform: none;
  }
  #section-email .email-form-wrapper {
    transform: none;
  }
  body:has(#section-form:not(.d-none)) .landing-container {
    grid-template-columns: minmax(360px, 1fr) minmax(400px, 0.9fr);
    column-gap: 48px;
    padding-left: 40px;
    padding-right: 40px;
  }
  #illustration-side:not(.d-none) {
    width: 100%;
  }
  #illustration-side:not(.d-none) img {
    width: min(52vw, 640px);
    max-width: 100%;
    transform: none;
  }
}
.thanks-you-content {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 536px);
  column-gap: 110px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1250px;
}
.thanks-you-content .illustration-side img {
  width: 650px;
  max-width: none;
}
.thanks-you-content .thanks-you-text-title {
  margin-top: 0;
}

#section-ty {
  flex: unset;
  width: 100%;
}

.thanks-you-artwork {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-8px);
}
.thanks-you-artwork .illustration-side {
  margin-bottom: 4px;
}

.thanks-you-logo {
  display: block;
  width: 500px;
  max-width: 100%;
  margin-top: -36px;
}
.thanks-you-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.thanks-you-message {
  width: 100%;
  max-width: 536px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-8px);
}

.registration-progress--ty {
  display: none;
}

@media (min-width: 769px) and (max-width: 1280px) {
  .thanks-you-content {
    grid-template-columns: minmax(390px, 1fr) minmax(420px, 0.9fr);
    column-gap: 48px;
    padding: 0 40px;
  }
  .thanks-you-content .illustration-side img {
    width: min(50vw, 610px);
    max-width: 100%;
  }
  .thanks-you-logo {
    width: min(42vw, 500px);
  }
}
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  html {
    overflow: hidden;
    height: 100%;
    overscroll-behavior-y: none;
  }
  body {
    height: 100%;
    overflow: hidden;
    overscroll-behavior-y: none;
  }
  body:has(#section-email:not(.d-none))::before,
  body:has(#section-form:not(.d-none))::before,
  body:has(#section-ty:not(.d-none))::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: var(--page-background-mobile);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  body:has(#section-email:not(.d-none)),
  body:has(#section-form:not(.d-none)),
  body:has(#section-ty:not(.d-none)) {
    background-image: none !important;
    position: relative;
  }
  .main-content {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 30px;
    height: 100%;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  body:has(#section-email:not(.d-none)) .main-content {
    padding-top: 85px;
    padding-left: 30px;
    padding-right: 30px;
  }
  body:has(#section-ty:not(.d-none)) .main-content {
    padding-top: 20px;
  }
  body:has(#section-form:not(.d-none)) .main-content {
    padding: 20px 30px;
    padding-bottom: 60px;
  }
  .landing-container {
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
    max-width: 100%;
  }
  body:has(#section-form:not(.d-none)) .landing-container {
    display: flex;
    padding: 0;
  }
  #section-email {
    display: flex;
    width: 100%;
    max-width: 560px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  #section-email .illustration-side {
    margin-bottom: 55px;
    width: 295px;
    height: 77px;
    order: -1;
  }
  #section-email .illustration-side img.mobile-logo {
    width: 295px;
    height: 77px;
    max-width: none;
    object-fit: contain;
  }
  #section-email .email-form-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .registration-progress {
    width: 325px;
    height: 5px;
    margin-bottom: 40px;
    gap: 10px;
  }
  .registration-progress__step {
    height: 5px;
  }
  .form-side {
    align-items: center;
  }
  .illustration-side {
    order: -1;
    margin-bottom: 20px;
  }
  .illustration-side img {
    max-width: 250px;
  }
  #illustration-side:not(.d-none) {
    display: flex !important;
    order: -1;
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
  }
  #illustration-side:not(.d-none) img {
    width: min(72vw, 320px);
    max-width: none;
    transform: none;
  }
  #illustration-side .illustration-mobile {
    display: block;
  }
  #illustration-side .illustration-desktop {
    display: none;
  }
  #section-form {
    order: 1;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    padding: 0 20px;
    padding-bottom: 40px;
    box-sizing: border-box;
    min-height: auto;
    height: auto;
  }
  .mobile-break {
    display: inline;
  }
  .thanks-you-section {
    padding: 0 30px;
  }
  .thanks-you-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 560px;
    padding: 0;
  }
  .thanks-you-content .illustration-side {
    margin-bottom: 0;
  }
  .thanks-you-content .illustration-side img {
    width: 242px;
    height: 242px;
    max-width: none;
    object-fit: contain;
  }
  .thanks-you-artwork,
  .thanks-you-message {
    transform: none;
  }
  .thanks-you-logo {
    width: 275px;
    height: 72px;
    margin-top: 0;
  }
  .thanks-you-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .thanks-you-artwork {
    margin-bottom: 16px;
  }
  .registration-progress--ty {
    display: grid;
    width: 325px;
    height: 5px;
    margin-bottom: 40px;
    gap: 10px;
    grid-template-columns: 1fr 1fr 2.65fr;
  }
  .registration-progress--ty .registration-progress__step {
    height: 5px;
  }
}
h1 {
  font-family: "Eurostile Extended", "Arial Black", sans-serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 30px;
  color: #000;
  background: transparent;
  padding: 0;
  width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing-title {
  padding-left: 90px;
  max-width: 530px;
  width: 100%;
  text-align: left;
}

.email-section-title {
  width: 100%;
  max-width: 450px;
  margin: 0 0 25px;
  color: #000;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.registration-section-title {
  width: 100%;
  max-width: 400px;
  margin: 0 0 14px;
  padding: 0;
  display: block;
  color: var(--primary-color);
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.45px;
  text-align: left;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .landing-title {
    padding-left: 0;
    text-align: center;
  }
}
.thanks-you-text-title {
  max-width: 536px;
  color: #000;
  text-align: center;
  font-family: "Arnova ITC Std", "Papyrus", "Marker Felt", cursive;
  font-weight: 400;
  font-size: 60px;
  font-style: normal;
  line-height: 57px;
  letter-spacing: 0;
  text-transform: capitalize;
  background: transparent;
  text-shadow: none;
  margin: 0 0 38px;
  padding: 0;
  width: 100%;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thanks-you-message-text {
  width: 100%;
  max-width: 520px;
  margin: 0 0 44px;
  color: #000;
  font-family: "Arnova ITC Std", "Papyrus", "Marker Felt", cursive;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  h1 {
    font-size: 20px;
    line-height: 24px;
    padding: 0;
    width: 100%;
    max-width: 333px;
    height: auto;
  }
  .thanks-you-text-title {
    font-family: "Arnova ITC Std", "Papyrus", "Marker Felt", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 26px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .thanks-you-message-text {
    max-width: 360px;
    margin-bottom: 30px;
    font-family: "Arnova ITC Std", "Papyrus", "Marker Felt", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .email-section-title {
    max-width: 100%;
    font-family: "Numans", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  .registration-section-title {
    max-width: 100%;
    font-family: "Numans", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0 20px;
    box-sizing: border-box;
  }
  .btn-register-thanks-you {
    width: 223px;
    height: 42px;
    font-family: "Nugros", "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
  }
}
.form-section {
  width: 100%;
  max-width: 400px;
}

#email-form {
  width: 100%;
  max-width: 302px;
  align-items: stretch !important;
}
#email-form .form-group {
  width: 100%;
  margin-top: 0;
  margin-bottom: 24px !important;
}
#email-form .d-flex.flex-column {
  width: 100%;
  margin-top: 0;
  position: relative;
  top: 2px;
}

.form-registration-group {
  width: 100%;
  max-width: 333px;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif !important;
}

#registration-form .form-group {
  width: 100%;
  margin-top: 0;
  margin-bottom: 14px;
}

.form-group {
  margin-top: 20px;
  margin-bottom: 20px;
}

.form-label,
.form-label-registration {
  display: block;
  font-size: 14px;
  color: var(--primary-color);
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.label-email-step-1 {
  color: #000 !important;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 100% !important;
  letter-spacing: 0 !important;
  display: block;
  margin-bottom: 8px;
}

.form-control,
.form-control-registration,
.email-control-register {
  width: 333px !important;
  height: 42px !important;
  background-color: transparent !important;
  border: var(--control-border-width) solid var(--primary-color) !important;
  border-radius: var(--control-border-radius) !important;
  color: var(--primary-color) !important;
  padding: 0 15px !important;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.form-control::placeholder,
.form-control-registration::placeholder,
.email-control-register::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
}
.form-control:focus, .form-control:focus-visible,
.form-control-registration:focus,
.form-control-registration:focus-visible,
.email-control-register:focus,
.email-control-register:focus-visible {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.form-control:disabled, .form-control[readonly],
.form-control-registration:disabled,
.form-control-registration[readonly],
.email-control-register:disabled,
.email-control-register[readonly] {
  background-color: rgba(0, 0, 0, 0.06) !important;
  border-color: var(--primary-color) !important;
  cursor: not-allowed;
  opacity: 0.7;
}

.email-control-register {
  width: 302px !important;
  height: 44px !important;
  line-height: 44px !important;
  min-width: 0;
  min-height: 44px;
  max-height: 44px;
  border: 1px solid #000 !important;
  border-radius: 7px !important;
  color: #000 !important;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  box-sizing: border-box;
  display: block;
}
.email-control-register:focus, .email-control-register:focus-visible {
  border-color: #000 !important;
}

@media (max-width: 768px) {
  #email-form {
    max-width: 100%;
  }
  .email-control-register,
  .form-control,
  .form-control-registration {
    width: 330px !important;
    max-width: 100%;
  }
}
.password-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 333px;
  display: flex;
  align-items: center;
}
.password-input-wrapper input {
  width: 100%;
  padding-right: 45px !important;
}

#form-field-Password {
  padding-right: 45px !important;
}
#form-field-Password::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-family: "Geist Mono", "JetBrains Mono", "Courier New", monospace;
}

.toggle-password-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.toggle-password-btn:hover, .toggle-password-btn:focus {
  opacity: 1;
  outline: none;
}
.toggle-password-btn img {
  width: 20px !important;
  height: 20px !important;
  display: block;
  max-width: 20px;
  padding: 0;
  margin: 0;
}

.password-requirements p {
  font-size: 13px;
  margin-bottom: 8px;
  color: #000;
}

.password-req {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 4px 0;
  color: #000;
}
.password-req.valid {
  color: #22B07D;
}
.password-req.valid .req-icon {
  border: 2px solid #22B07D !important;
  background-color: transparent !important;
  font-size: 0 !important;
  position: relative;
}
.password-req.valid .req-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 8px;
  background-color: #22B07D;
  -webkit-mask-image: url("../img/check.svg");
  mask-image: url("../img/check.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.password-req:not(.valid) .req-icon {
  border: 2px solid #000;
  color: #000;
  font-size: 14px;
}

.req-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #000;
  flex-shrink: 0;
  color: #000;
}

.phone-input-container {
  width: 100%;
}

.phone-container {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: var(--control-border-radius);
  height: 42px;
  transition: box-shadow 0.3s ease;
}
.phone-container:focus-within {
  box-shadow: none;
}
.phone-container:has(input:disabled), .phone-container:has(input[readonly]) {
  opacity: 0.7;
}

#form-field-ladaSelect {
  width: auto !important;
  max-width: 78px;
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: var(--control-border-width) solid var(--primary-color) !important;
  border-radius: var(--control-border-radius) 0 0 var(--control-border-radius) !important;
  padding: 0 0 0 11px !important;
  height: 42px !important;
  cursor: pointer;
  appearance: auto;
  text-align: center;
  text-align-last: center;
  border-right: var(--control-border-width) solid var(--primary-color) !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 14px;
}
#form-field-ladaSelect option {
  background-color: #fff;
  color: var(--primary-color);
}
#form-field-ladaSelect:focus {
  outline: none;
}

#form-field-Phone {
  flex: 1;
  background-color: transparent !important;
  border: var(--control-border-width) solid var(--primary-color) !important;
  border-left: 0 !important;
  border-radius: 0 var(--control-border-radius) var(--control-border-radius) 0 !important;
  color: var(--primary-color) !important;
  padding: 0 15px !important;
  height: 42px !important;
  outline: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 14px;
}
#form-field-Phone::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
}
#form-field-Phone:focus {
  outline: none;
}

#form-field-Birthdate {
  cursor: pointer;
  width: 100%;
  position: relative;
}
#form-field-Birthdate::-webkit-datetime-edit {
  width: 100%;
}
#form-field-Birthdate::-webkit-datetime-edit-text, #form-field-Birthdate::-webkit-datetime-edit-month-field, #form-field-Birthdate::-webkit-datetime-edit-day-field, #form-field-Birthdate::-webkit-datetime-edit-year-field {
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}
#form-field-Birthdate:not(:invalid)::-webkit-datetime-edit-text, #form-field-Birthdate:not([value=""])::-webkit-datetime-edit-month-field, #form-field-Birthdate:not([value=""])::-webkit-datetime-edit-day-field, #form-field-Birthdate:not([value=""])::-webkit-datetime-edit-year-field {
  color: #000;
  text-transform: uppercase;
}
#form-field-Birthdate::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(7467%) hue-rotate(359deg) brightness(95%) contrast(115%);
}

.choices__inner {
  width: 333px !important;
  height: 42px !important;
  background-color: transparent !important;
  border: var(--control-border-width) solid var(--primary-color) !important;
  border-radius: var(--control-border-radius) !important;
  color: var(--primary-color) !important;
  padding: 0 !important;
  padding-left: 15px !important;
  display: flex !important;
  align-items: center !important;
}

.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

.choices.is-disabled .choices__inner {
  background-color: rgba(0, 0, 0, 0.06) !important;
  border-color: var(--primary-color) !important;
  cursor: not-allowed;
  opacity: 0.7;
}

.choices__list--single {
  padding: 0 !important;
}

.choices__item--selectable {
  color: var(--primary-color) !important;
}

.choices__placeholder {
  color: rgba(0, 0, 0, 0.45) !important;
  opacity: 1 !important;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  background-color: var(--surface-color) !important;
  border: var(--control-border-width) solid var(--primary-color) !important;
  border-radius: var(--control-border-radius) !important;
  z-index: 10 !important;
}

.choices__list--dropdown .choices__item {
  color: var(--primary-color) !important;
  background-color: transparent !important;
}
.choices__list--dropdown .choices__item.is-highlighted {
  background-color: var(--primary-color) !important;
  color: #F5FAF7 !important;
}
.choices__list--dropdown .choices__item.is-selected {
  background-color: var(--primary-color) !important;
  color: #F5FAF7 !important;
}
.choices__list--dropdown .choices__item.is-selected.is-highlighted {
  background-color: var(--primary-color) !important;
  color: #F5FAF7 !important;
}

.choices__input {
  background-color: transparent !important;
  color: var(--primary-color) !important;
}
.choices__input::placeholder {
  color: rgba(0, 0, 0, 0.45) !important;
}

.choices__item--choice.is-selected {
  background-color: var(--primary-color) !important;
  color: #F5FAF7 !important;
}

.input-error {
  border: 1px solid #ea2f2f !important;
}

.error-message,
#error-fecha-nacimiento {
  color: #ea2f2f !important;
  font-size: 12px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .form-section {
    max-width: 333px;
  }
}
.btn-primary,
.btn-registro {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: "Geist Mono", "JetBrains Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  color: #F5FAF7;
  background-color: #000;
  border-radius: 0;
}
.btn-primary:hover,
.btn-registro:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-primary:active,
.btn-registro:active {
  transform: translateY(0);
}

#section-email .btn-registro {
  width: 302px;
  min-width: 0;
  height: 57px;
  min-height: 57px;
  border-radius: 7px;
  background: #000;
  color: #fff;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.btn-registro {
  width: 238px;
  height: 36px;
  min-width: 238px;
  min-height: 36px;
  box-sizing: border-box;
  letter-spacing: 0;
}

#section-form .btn-registro,
#registration-form .btn-registro {
  width: 333px;
  height: 43px;
  border-radius: var(--control-border-radius);
  background-color: var(--primary-color);
  color: #fff;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
}

.btn-register-thanks-you {
  width: 256px;
  height: 48px;
  background: #000;
  color: #fff;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--control-border-radius);
  text-transform: uppercase;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-register-thanks-you:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-register-thanks-you:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: #000;
  color: #F5FAF7;
  border: none;
  border-radius: 10px;
  height: 42px;
  width: fit-content;
  min-width: 112px;
  padding: 0 24px;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 768px) {
  .btn-registro {
    margin: 0 auto;
  }
  #section-email .btn-registro {
    width: 330px;
    height: 60px;
    min-height: 60px;
    border-radius: 16px;
    padding: 18px 24px;
    gap: 8px;
    font-family: "Nugros", "Inter", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
  }
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.checkbox-group input {
  margin-top: 0;
}
.checkbox-group input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--primary-color);
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-group input[type=checkbox]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.checkbox-group input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-label {
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 12px;
  color: var(--primary-color);
  line-height: normal;
}
.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}
.checkbox-label a:hover {
  color: var(--primary-color);
  opacity: 0.8;
}

.check_link {
  color: var(--primary-color);
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.check_link a {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .checkbox-group {
    margin-left: 0;
  }
}

footer {
  width: fit-content;
  padding-left: 11px;
  padding-bottom: 15px;
  text-align: center;
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 12px;
  color: #000;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
    margin-top: 30px;
  }
}

.social-icon img {
  width: 22px;
  height: 19px;
  transition: transform 0.2s;
}
.social-icon:hover img {
  transform: scale(1.1);
}

#custom-loader-style {
  display: none;
}

#custom-loader {
  font-family: "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
}

.form-field {
  max-width: 333px;
}
.form-field .choices {
  width: 333px !important;
  height: 42px !important;
  margin-bottom: 0 !important;
  overflow: visible !important;
}
