@charset "UTF-8";
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.auth-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.auth-modal.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.auth-modal.login-success .auth-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
  background-color: #4CAF50;
  z-index: 10001;
  animation: slideDown 0.3s ease;
}
.auth-modal.login-success .auth-modal-step-verify {
  position: relative;
}
.auth-modal.login-success .auth-modal-step-verify::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.auth-modal.login-success .auth-modal-step-verify::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background-color: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  z-index: 6;
  animation: scaleIn 0.3s ease;
}
.auth-modal .auth-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.auth-modal .auth-modal-content {
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  align-self: center;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (width > 768px) {
  .auth-modal .auth-modal-content {
    max-width: 61.9rem;
    max-height: 90vh;
    height: auto;
  }
}
@media (width > 768px) {
  .auth-modal .auth-modal-content:has(.auth-modal-step-register.active) {
    min-height: 80rem;
  }
}
@media (width <= 768px) {
  .auth-modal .auth-modal-content:has(gmp-place-autocomplete:focus-within), .auth-modal .auth-modal-content:has(gmp-place-autocomplete[data-expanded=true]) {
    min-height: 0 !important;
    height: auto !important;
  }
}
@media (width > 768px) {
  .auth-modal .auth-modal-content:has(.auth-welcome-step.active) {
    min-height: 670px;
  }
}
.auth-modal .auth-modal-close {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 10;
  background: none;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
@media (width > 768px) {
  .auth-modal .auth-modal-close {
    top: 2rem;
    left: 2rem;
  }
}
.auth-modal .auth-modal-close:hover {
  opacity: 0.7;
}
.auth-modal .auth-modal-close:focus {
  outline: 1px solid var(--black-main, #111);
  outline-offset: 1px;
  border-radius: 2px;
}
.auth-modal .auth-modal-close:focus-visible {
  outline: 1px solid var(--black-main, #111);
  outline-offset: 1px;
  border-radius: 2px;
}
.auth-modal .auth-modal-close svg {
  width: 1.4rem;
  height: 1.4rem;
}
.auth-modal .auth-modal-close svg path {
  stroke: var(--black-main);
}
.auth-modal .auth-modal-step {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.auth-modal .auth-modal-step.active {
  display: flex;
}
.auth-modal .auth-modal-step.auth-modal-step-input.active {
  flex: 0 1 auto;
}
@media (width <= 768px) {
  .auth-modal .auth-modal-step.auth-modal-step-input.active {
    flex: 1;
    min-height: 0;
  }
}
.auth-modal .auth-modal-header {
  padding: 5rem 4.1rem 0;
  flex-shrink: 0;
  border-bottom: 1px solid var(--red-30);
}
@media (width > 768px) {
  .auth-modal .auth-modal-header {
    padding: 5.3rem 4rem 0;
  }
}
.auth-modal .auth-modal-title {
  font-family: var(--font-family-primary);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--red-main);
  margin: 0 0 0.8rem;
  display: flex;
  justify-content: center;
}
@media (width > 768px) {
  .auth-modal .auth-modal-title {
    font-size: 3.2rem;
  }
}
.auth-modal .auth-modal-tabs {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.8rem;
  justify-content: center;
}
.auth-modal .auth-modal-tab {
  background: none;
  border: none;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  height: 4.6rem;
  display: flex;
  align-items: flex-end;
}
.auth-modal .auth-modal-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.2s ease;
}
.auth-modal .auth-modal-tab.active {
  font-weight: 700;
  color: var(--red-main);
}
.auth-modal .auth-modal-tab.active::after {
  background-color: var(--red-main);
}
.auth-modal .auth-modal-tab:hover:not(.active) {
  color: var(--red-main);
}
.auth-modal .auth-modal-tab:focus {
  outline: 1px solid var(--black-main, #111);
  outline-offset: 1px;
  border-radius: 2px;
}
.auth-modal .auth-modal-tab:focus-visible {
  outline: 1px solid var(--black-main, #111);
  outline-offset: 1px;
  border-radius: 2px;
}
.auth-modal .auth-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem 3.5rem 5.3rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-body {
    padding: 4.8rem 8.1rem 7rem;
  }
}
.auth-modal-step-input .auth-modal .auth-modal-body {
  flex: 0 1 auto;
  min-height: 38rem;
  padding-bottom: 12rem;
}
@media (width > 768px) {
  .auth-modal-step-input .auth-modal .auth-modal-body {
    min-height: 42rem;
    padding-bottom: 12rem;
  }
}
.auth-modal .auth-modal-body-verify {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 13rem;
}
.auth-modal .auth-form-professional,
.auth-modal .auth-form-private {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width > 768px) {
  .auth-modal .auth-form-professional,
  .auth-modal .auth-form-private {
    gap: 3.6rem;
  }
}
.auth-modal #auth-form-professional-wrapper {
  gap: 0;
}
.auth-modal #auth-form-professional-wrapper .auth-form-field {
  padding-bottom: 3.6rem;
}
@media (width <= 768px) {
  .auth-modal #auth-form-professional-wrapper .auth-form-field {
    padding-bottom: 2rem;
  }
}
.auth-modal .auth-modal-description {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  text-align: center;
  margin: 0 0 1.2rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-description {
    margin: 0 auto 6.5rem;
  }
}
.auth-modal .auth-modal-phone-display {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-align: center;
  margin: 0 0 1.5rem;
  direction: rtl;
}
.auth-modal .auth-modal-phone-display .auth-otp-phone-label {
  color: var(--black-40, #999);
  margin-left: 0.5rem;
}
.auth-modal .auth-modal-phone-display .auth-otp-phone-number {
  font-weight: 600;
  color: var(--black-main);
}
.auth-modal .auth-modal-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  text-align: center;
}
.auth-modal .auth-modal-code-label {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.12;
  color: var(--black-main);
  margin: 0;
}
.auth-modal .auth-modal-form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-form {
    gap: 3.2rem;
  }
}
.auth-modal .auth-form-field {
  display: flex;
  flex-direction: column;
}
.auth-modal .auth-form-label {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
}
.auth-modal .auth-form-label .auth-form-required {
  color: var(--red-main);
  margin-right: 0.3rem;
}
.auth-modal .auth-form-label {
  text-transform: uppercase;
  padding: 0.6rem 0 0.3rem;
  text-align: right;
}
.auth-modal .auth-form-input {
  width: 100%;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  padding: 0.3rem 0 0.6rem;
  text-align: right;
  outline: none;
  direction: rtl;
  box-sizing: border-box;
  transition: border-bottom-color 0.2s ease;
}
.auth-modal .auth-form-input::-moz-placeholder {
  color: #b3b3b3;
}
.auth-modal .auth-form-input::placeholder {
  color: #b3b3b3;
}
.auth-modal .auth-form-input:focus {
  outline: none;
  border-bottom-color: var(--black-main, #111);
  box-shadow: 0 2px 0 0 var(--black-main, #111);
}
.auth-modal .auth-form-input:focus-visible {
  outline: none;
  border-bottom-color: var(--black-main, #111);
  box-shadow: 0 2px 0 0 var(--black-main, #111);
}
.auth-modal .auth-form-input.error {
  border-bottom-color: var(--red-main);
}
.auth-modal .auth-form-input:-internal-autofill-selected {
  background: #F8F8F8 !important;
}
.auth-modal .auth-form-input:-webkit-autofill, .auth-modal .auth-form-input:-webkit-autofill:hover, .auth-modal .auth-form-input:-webkit-autofill:focus, .auth-modal .auth-form-input:-webkit-autofill:active {
  background: #F8F8F8 !important;
  -webkit-box-shadow: 0 0 0 30px #F8F8F8 inset !important;
}
.auth-modal gmp-place-autocomplete {
  width: 100%;
  display: block;
  min-height: 0;
  height: auto;
  line-height: 1.2;
  border-radius: 0;
  border: none;
  border-bottom: none;
  background-color: transparent;
  color: var(--black-main);
  color-scheme: light;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  box-sizing: border-box;
}
.auth-modal gmp-place-autocomplete input-container .focus-ring {
  display: none;
}
.auth-modal gmp-place-autocomplete::part(input) {
  width: 100%;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  background: none;
  border: none;
  padding: 0.3rem 1rem 0.6rem 0;
  text-align: right;
  outline: none;
  direction: rtl;
  box-sizing: border-box;
}
.auth-modal gmp-place-autocomplete::part(input)::-moz-placeholder {
  color: #b3b3b3;
}
.auth-modal gmp-place-autocomplete::part(input)::placeholder {
  color: #b3b3b3;
}
.auth-modal gmp-place-autocomplete::part(input):focus {
  border: none;
  border-bottom: none;
}
.auth-modal gmp-place-autocomplete::part(input):focus-visible {
  outline: none;
  border: none;
}
.auth-modal gmp-place-autocomplete::part(focus-ring) {
  border: none !important;
}
.auth-modal gmp-place-autocomplete::part(input-container) {
  border-radius: 0;
  background-color: transparent;
  border: none;
  min-height: 0;
  height: 3.2rem;
  max-height: 3.2rem;
  align-items: center;
}
.auth-modal gmp-place-autocomplete::part(input-container) .focus-ring {
  display: none;
}
.auth-modal gmp-place-autocomplete::part(input-container) .focus-ring:focus {
  outline: none;
  border: 1px solid var(--black-main, #000);
}
.auth-modal .auth-register-row-2 .auth-form-field gmp-place-autocomplete,
.auth-modal .auth-register-row-3 .auth-form-field gmp-place-autocomplete {
  display: block;
  min-height: 0;
}
.auth-modal gmp-place-autocomplete::part(prediction-list-container), .auth-modal gmp-place-autocomplete::part(prediction-list) {
  max-height: 32rem;
  overflow-y: auto;
}
.auth-modal gmp-place-autocomplete::part(full-window-autocomplete-dialog) {
  height: auto;
  max-height: 80dvh;
}
.auth-modal gmp-place-autocomplete::part(widget-container) {
  height: auto;
  min-height: 0;
}
.auth-modal .auth-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-modal .auth-link-forgot {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-decoration: underline;
  text-transform: uppercase;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  transition: color 0.2s ease;
}
.auth-modal .auth-link-forgot:hover {
  color: var(--red-main);
}
.auth-modal .auth-link-forgot:focus {
  outline: none;
}
.auth-modal .auth-link-forgot:focus-visible {
  outline: 2px solid var(--black-main, #111);
  outline-offset: 2px;
  border-radius: 2px;
}
.auth-modal .auth-remember-me {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.auth-modal .auth-remember-me input[type=checkbox] {
  width: 1.3rem;
  height: 1.3rem;
  aspect-ratio: 1/1;
  border: 0.5px solid var(--black-main);
  border-radius: 0;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
}
.auth-modal .auth-remember-me input[type=checkbox]:checked {
  background-color: var(--red-main);
  border-color: var(--red-main);
}
.auth-modal .auth-remember-me input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.4rem;
  height: 0.8rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
}
.auth-modal .auth-remember-me label {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
}
.auth-modal .auth-form-error {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--red-main);
  padding: 0.4rem 0 0;
  margin-top: 0.4rem;
  margin-bottom: 0;
  display: none;
  text-align: right;
  direction: rtl;
  width: 100%;
}
.auth-modal .auth-form-error.visible {
  display: block;
}
.auth-modal .auth-form-field .auth-form-label {
  order: 1;
}
.auth-modal .auth-form-field .auth-form-input,
.auth-modal .auth-form-field .auth-form-select-wrapper {
  order: 2;
}
.auth-modal .auth-form-field .auth-form-error {
  order: 3;
}
.auth-modal .auth-otp-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.auth-modal .auth-otp-label-wrapper {
  width: 100%;
  padding: 0.6rem 1.2rem 0.3rem;
  display: flex;
  justify-content: center;
}
.auth-modal .auth-otp-label {
  text-align: left;
  padding: 0;
}
.auth-modal .auth-otp-inputs {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  direction: ltr;
  padding: 0;
  margin: 0;
  width: 100%;
}
.auth-modal .auth-otp-input {
  width: 4.4rem;
  height: 6rem;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  background: none;
  font-family: var(--font-family-primary);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--black-main) !important;
  outline: none;
  transition: border-color 0.2s ease;
  padding: 0;
  margin: 0;
  -webkit-text-fill-color: var(--black-main) !important;
  caret-color: var(--black-main);
}
.auth-modal .auth-otp-input::-moz-placeholder {
  color: transparent;
}
.auth-modal .auth-otp-input::placeholder {
  color: transparent;
}
.auth-modal .auth-otp-input::-webkit-input-placeholder {
  color: transparent;
}
.auth-modal .auth-otp-input::-moz-placeholder {
  color: transparent;
}
.auth-modal .auth-otp-input:-ms-input-placeholder {
  color: transparent;
}
.auth-modal .auth-otp-input:focus {
  border-bottom-width: 1px;
  color: var(--black-main) !important;
  -webkit-text-fill-color: var(--black-main) !important;
}
.auth-modal .auth-otp-input.error {
  border-bottom-color: var(--red-main);
}
.auth-modal .auth-resend-code-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.auth-modal .auth-register-link-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.auth-modal .auth-register-link-wrapper-input {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (width <= 768px) {
  .auth-modal .auth-register-link-wrapper-input {
    margin-top: auto;
    padding-bottom: 3.5rem;
  }
}
@media (width > 768px) {
  .auth-modal .auth-register-link-wrapper-input {
    padding-bottom: 3.5rem;
  }
}
.auth-modal .auth-verify-button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: row;
}
.auth-modal .auth-resend-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  padding: 0.6rem 1.2rem 0.3rem;
  text-transform: uppercase;
}
.auth-modal .auth-resend-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.auth-modal .auth-resend-icon svg {
  width: 100%;
  height: 100%;
}
.auth-modal .auth-resend-icon svg path {
  stroke: var(--black-main);
}
.auth-modal .auth-link-resend {
  background: none;
  border: none;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--black-main);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.auth-modal .auth-link-resend:disabled {
  color: var(--gray-placeholder);
  cursor: not-allowed;
}
.auth-modal .auth-resend-timer {
  color: var(--gray-placeholder);
}
.auth-modal .auth-modal-action-bar {
  flex-shrink: 0;
  padding: 1.7rem 2.6rem 2rem;
  background-color: white;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.4rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-action-bar {
    flex-direction: column;
    align-items: flex-end;
  }
}
.auth-modal .auth-modal-action-bar.auth-modal-action-bar-input {
  border-top: 1px solid var(--red-30);
  padding: 2.1rem 0 0 0;
  min-height: 9.7rem;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .auth-modal .auth-modal-action-bar.auth-modal-action-bar-input {
    flex: 1;
    min-height: 0;
  }
}
@media (width > 768px) {
  .auth-modal .auth-modal-action-bar.auth-modal-action-bar-input {
    border-top: none;
    padding: 0;
  }
}
.auth-modal .auth-modal-action-bar.auth-modal-action-bar-verify {
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8.5rem;
  padding: 0;
  background-color: var(--red-main);
  text-align: center;
  color: white;
  border: none;
}
.auth-modal .auth-modal-action-bar.auth-modal-action-bar-verify .auth-link-portal {
  color: white;
}
.auth-modal .auth-modal-action-bar.auth-modal-action-bar-verify .auth-link-portal .auth-portal-text {
  color: white;
}
.auth-modal .auth-modal-action-bar.auth-modal-action-bar-verify .auth-link-portal .auth-portal-text .auth-portal-link {
  color: white;
  text-decoration: underline;
}
.auth-modal .auth-modal-action-bar.auth-modal-action-bar-verify .auth-link-portal .auth-portal-text .auth-portal-link:hover {
  opacity: 0.8;
}
.auth-modal .auth-modal-action-bar.auth-modal-action-bar-verify .auth-link-portal .auth-portal-icon svg path {
  stroke: white;
}
.auth-modal .auth-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 19.2rem;
  height: 5.2rem;
  background-color: var(--red-main);
  color: white;
  border: none;
  border-radius: 0.4rem;
  padding: 0 2rem 0 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  margin: 0 auto;
}
@media (width > 768px) {
  .auth-modal .auth-btn-primary {
    margin: 0 auto;
  }
}
.auth-modal .auth-btn-primary:focus {
  outline: none;
}
.auth-modal .auth-btn-primary:focus-visible {
  outline: 2px solid var(--black-main, #111);
  outline-offset: 3px;
  border-radius: 0.4rem;
}
.auth-modal .auth-btn-primary:disabled {
  background-color: var(--gray-placeholder);
  cursor: not-allowed;
}
.auth-modal .auth-btn-primary .auth-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: 180deg;
}
.auth-modal .auth-btn-primary .auth-btn-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  transform: rotate(180deg);
}
.auth-modal .auth-btn-primary .auth-btn-icon svg path {
  stroke: white;
  fill: none;
}
.auth-modal .auth-btn-primary .auth-btn-text {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.auth-modal .auth-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 9.9rem;
  height: 5.2rem;
  background-color: transparent;
  border: 1px solid var(--grey-light, #ccc);
  border-radius: 0.4rem;
  color: var(--black-main);
  padding: 0 2rem 0 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.auth-modal .auth-btn-secondary:focus {
  outline: none;
}
.auth-modal .auth-btn-secondary:focus-visible {
  outline: 2px solid var(--black-main, #111);
  outline-offset: 3px;
  border-radius: 0.4rem;
}
.auth-modal .auth-btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.auth-modal .auth-btn-secondary:hover:not(:disabled) {
  border-color: var(--red-main);
  color: var(--red-main);
}
.auth-modal .auth-btn-secondary:hover:not(:disabled) .auth-btn-icon path {
  stroke: var(--red-main);
  fill: none;
}
.auth-modal .auth-btn-secondary .auth-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal .auth-btn-secondary .auth-btn-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.auth-modal .auth-btn-secondary .auth-btn-icon svg path {
  stroke: var(--black-main);
  fill: none;
}
.auth-modal .auth-btn-secondary .auth-btn-text {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.auth-modal .auth-modal-footer-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.auth-modal .auth-modal-footer-links.auth-modal-footer-links-input {
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8.6rem;
  padding: 0;
  background-color: var(--red-main);
  text-align: center;
  color: white;
}
.auth-modal .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-portal {
  color: white;
}
.auth-modal .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-portal .auth-portal-text {
  color: white;
}
.auth-modal .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-portal .auth-portal-text .auth-portal-link {
  color: white;
}
.auth-modal .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-portal .auth-portal-text .auth-portal-link:hover {
  opacity: 0.8;
}
.auth-modal .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-portal .auth-portal-icon svg path {
  stroke: white;
}
.auth-modal .auth-modal-footer-links.auth-modal-footer-links-verify {
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: white;
}
.auth-modal .auth-link-register {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main);
  text-decoration: none;
  display: inline-block;
}
.auth-modal .auth-link-register .auth-link-register-text {
  font-weight: 700;
  text-decoration: underline;
}
.auth-modal .auth-link-register:hover .auth-link-register-text {
  color: var(--red-main);
}
.auth-modal .auth-portal-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.auth-modal .auth-link-portal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main);
  text-decoration: none;
}
@media (width > 768px) {
  .auth-modal .auth-link-portal {
    font-size: 1.8rem;
  }
}
.auth-modal .auth-link-portal .auth-portal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
}
.auth-modal .auth-link-portal .auth-portal-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.auth-modal .auth-link-portal .auth-portal-icon svg path {
  stroke: var(--red-main);
  fill: none;
}
.auth-modal .auth-link-portal .auth-portal-text {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.auth-modal .auth-link-portal .auth-portal-text .auth-portal-link {
  font-weight: 700;
  color: inherit;
}
@media (width > 768px) {
  .auth-modal .auth-link-portal .auth-portal-text .auth-portal-link {
    font-size: 1.8rem;
  }
}
.auth-modal .auth-link-portal .auth-portal-text .auth-portal-link:hover {
  opacity: 0.8;
}
.auth-modal .auth-link-portal:hover .auth-portal-link {
  color: var(--red-main);
}
.auth-modal .auth-footer-link-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main);
}
.auth-modal .auth-footer-link-group a {
  color: var(--black-main);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.auth-modal .auth-footer-link-group a:hover {
  color: var(--red-main);
}
.auth-modal .auth-footer-divider {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--black-main);
  margin: 0;
}
.auth-modal .auth-footer-divider::before {
  content: "|";
}
.auth-modal .auth-link-back {
  display: block;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  color: var(--black-main);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.auth-modal .auth-link-back:hover {
  color: var(--red-main);
}
.auth-modal .auth-modal-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  z-index: 20;
}
.auth-modal .auth-modal-loading.active {
  display: flex;
}
.auth-modal .auth-modal-loading p {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  color: var(--black-main);
  margin: 0;
}
.auth-modal .auth-loading-spinner {
  width: 4rem;
  height: 4rem;
  border: 3px solid var(--red-30);
  border-top-color: var(--red-main);
  border-radius: 50%;
  animation: auth-spin 0.8s linear infinite;
}
@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}
.auth-modal .auth-modal-step-success .auth-success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  width: 6.4rem;
  height: 6.4rem;
}
.auth-modal .auth-modal-step-success .auth-success-icon svg {
  width: 100%;
  height: 100%;
}
.auth-modal .auth-modal-step-success .auth-modal-description {
  margin-bottom: 1.2rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-success .auth-modal-description {
    margin-bottom: 2.5rem;
  }
}
.auth-modal .auth-modal-step-success .auth-sent-to-text {
  font-weight: 400;
  color: var(--black-main);
}
.auth-modal .auth-modal-step-success .auth-modal-sub-description {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  text-align: center;
  margin: 0;
}
.auth-modal .auth-modal-step-register-success .auth-modal-header-register-success .auth-modal-title-register-success {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red-main);
  line-height: 1.1;
  margin-bottom: 0;
}
.auth-modal .auth-modal-step-register-success .auth-modal-tabs-register-success {
  margin-top: 2rem;
  margin-bottom: 0;
}
.auth-modal .auth-modal-step-register-success .auth-modal-tabs-register-success .auth-modal-tab {
  padding: 0.8rem 2.4rem;
  height: 4.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black-main);
  border-bottom: none;
}
.auth-modal .auth-modal-step-register-success .auth-modal-tabs-register-success .auth-modal-tab.active {
  font-weight: 700;
  color: var(--red-main);
}
.auth-modal .auth-modal-step-register-success .auth-modal-body-register-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 4.3rem;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  max-width: 31.2rem;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-icon svg {
  width: 100%;
  height: 100%;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-message .auth-register-success-title {
  font-family: var(--font-family-primary);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 2.8rem;
  color: var(--black-main);
  margin: 0;
  text-align: center;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-message .auth-register-success-text {
  font-family: var(--font-family-primary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  margin: 0;
  text-align: center;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action {
  margin-top: 1.5rem;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-primary);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--red-main);
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-back-link:hover {
  opacity: 0.8;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-back-link .auth-register-success-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-back-link .auth-register-success-back-icon svg {
  width: 100%;
  height: 100%;
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-back-link .auth-register-success-back-icon svg path {
  stroke: var(--red-main);
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-promo-image {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-promo-image {
    padding-bottom: 7rem;
  }
}
.auth-modal .auth-modal-step-register-success .auth-register-success-action .auth-register-success-promo-image img {
  width: 100%;
  height: auto;
  display: block;
}
.auth-modal .auth-modal-step-forgot-email .auth-modal-description,
.auth-modal .auth-modal-step-forgot-check .auth-modal-description,
.auth-modal .auth-modal-step-forgot-reset .auth-modal-description,
.auth-modal .auth-modal-step-forgot-success .auth-modal-description {
  text-align: center;
  margin-bottom: 2rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-forgot-email .auth-modal-description,
  .auth-modal .auth-modal-step-forgot-check .auth-modal-description,
  .auth-modal .auth-modal-step-forgot-reset .auth-modal-description,
  .auth-modal .auth-modal-step-forgot-success .auth-modal-description {
    margin-bottom: 2.5rem;
  }
}
.auth-modal .auth-modal-step-forgot-email .auth-form-options,
.auth-modal .auth-modal-step-forgot-check .auth-form-options,
.auth-modal .auth-modal-step-forgot-reset .auth-form-options,
.auth-modal .auth-modal-step-forgot-success .auth-form-options {
  margin-top: 1.2rem;
  justify-content: flex-end;
}
.auth-modal .auth-modal-step-forgot-email .auth-form-options a,
.auth-modal .auth-modal-step-forgot-check .auth-form-options a,
.auth-modal .auth-modal-step-forgot-reset .auth-form-options a,
.auth-modal .auth-modal-step-forgot-success .auth-form-options a {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-decoration: underline;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.auth-modal .auth-modal-step-forgot-email .auth-form-options a:hover,
.auth-modal .auth-modal-step-forgot-check .auth-form-options a:hover,
.auth-modal .auth-modal-step-forgot-reset .auth-form-options a:hover,
.auth-modal .auth-modal-step-forgot-success .auth-form-options a:hover {
  opacity: 0.8;
}
.auth-modal .auth-modal-step-forgot-check .auth-modal-sub-description {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  text-align: center;
  margin-top: 1rem;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2.4rem;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-description-wrapper .auth-modal-description {
  text-align: center;
  margin-bottom: 0;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-description-wrapper .auth-modal-email-display {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-align: center;
  margin-top: 0;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-description-wrapper .auth-modal-email-display span {
  display: block;
}
.auth-modal .auth-modal-step-forgot-reset .auth-form-field {
  margin-bottom: 2rem;
}
.auth-modal .auth-modal-step-forgot-reset .auth-form-options {
  margin-top: 0;
  margin-bottom: 0;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-register-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  line-height: 1.2;
  color: white;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-register-wrapper .auth-link-register-text {
  color: white;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-register-wrapper .auth-link-register {
  color: white;
  text-decoration: underline;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-register-wrapper .auth-link-register .auth-link-register-text-link {
  font-weight: 700;
  text-decoration: underline;
}
.auth-modal .auth-modal-step-forgot-reset .auth-modal-footer-links.auth-modal-footer-links-input .auth-link-register-wrapper .auth-link-register:hover {
  opacity: 0.8;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register {
    min-height: 78rem;
  }
}
.auth-modal .auth-modal-step-register .auth-modal-header-register .auth-modal-title-register {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red-main);
  line-height: 1.1;
  margin-bottom: 0;
}
.auth-modal .auth-modal-step-register .auth-modal-tabs-register {
  margin-top: 2rem;
  margin-bottom: 0;
}
.auth-modal .auth-modal-step-register .auth-modal-tabs-register .auth-modal-tab {
  padding: 0.8rem 2.4rem;
  height: 4.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black-main);
  border-bottom: none;
}
.auth-modal .auth-modal-step-register .auth-modal-tabs-register .auth-modal-tab.active {
  font-weight: 700;
  color: var(--red-main);
}
.auth-modal .auth-modal-step-register .auth-modal-body-register {
  padding-top: 2rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-modal-body-register {
    padding: 4rem 8.1rem 1rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-info {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.auth-modal .auth-modal-step-register .auth-register-info .auth-register-info-text {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
}
.auth-modal .auth-modal-step-register .auth-register-info .auth-register-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.auth-modal .auth-modal-step-register .auth-register-info .auth-register-info-icon svg {
  width: 100%;
  height: 100%;
}
.auth-modal .auth-modal-step-register .auth-register-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 47.5rem;
  margin: 0 auto;
}
.auth-modal .auth-modal-step-register .auth-register-section-title {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black-main);
  text-transform: uppercase;
  margin: 0;
  text-align: right;
  width: 100%;
}
.auth-modal .auth-modal-step-register .auth-register-section-notice {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background-color: rgba(251, 229, 234, 0.6);
  border-radius: 0.4rem;
  width: 100%;
  margin-bottom: 1.8rem;
  direction: rtl;
}
.auth-modal .auth-modal-step-register .auth-register-section-notice .auth-register-section-notice__icon {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal .auth-modal-step-register .auth-register-section-notice .auth-register-section-notice__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.auth-modal .auth-modal-step-register .auth-register-section-notice .auth-register-section-notice__icon path,
.auth-modal .auth-modal-step-register .auth-register-section-notice .auth-register-section-notice__icon circle {
  stroke: var(--red-main, #db0032);
}
.auth-modal .auth-modal-step-register .auth-register-section-notice .auth-register-section-notice__text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--red-main, #db0032);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.3;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-fields-grid {
    gap: 1rem 2rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid .auth-form-field {
  width: 100%;
  min-width: 0;
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid .auth-register-row-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-fields-grid .auth-register-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid .auth-register-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-fields-grid .auth-register-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-checkbox {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.6rem;
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input {
  width: 1.2rem;
  height: 1.2rem;
  aspect-ratio: 1/1;
  border: 0.5px solid var(--black-main);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input:checked {
  background-color: var(--black-main);
  border-color: var(--black-main);
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 0.3rem;
  height: 0.6rem;
  border: solid var(--white-main);
  border-width: 0 0.15rem 0.15rem 0;
  border-radius: 0;
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input.error {
  border-color: var(--red-main);
  border-width: 1px;
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-form-error {
  margin-top: 0.4rem;
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-label {
  font-family: var(--font-family-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input.error + .auth-checkbox-label,
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input[aria-invalid=true] + .auth-checkbox-label {
  color: var(--red-main);
}
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input.error + .auth-checkbox-label a,
.auth-modal .auth-modal-step-register .auth-register-checkbox .auth-checkbox-input[aria-invalid=true] + .auth-checkbox-label a {
  color: var(--red-main);
}
.auth-modal .auth-modal-step-register .auth-register-checkbox label[for=auth-register-student] {
  font-size: 1.4rem;
}
.auth-modal .auth-modal-step-register .auth-register-step-content {
  width: 100%;
}
.auth-modal .auth-modal-step-register .auth-register-consent {
  margin-top: 1.6rem;
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid-company {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-fields-grid-company {
    gap: 1rem 2rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid-company .auth-form-field {
  width: 100%;
  min-width: 0;
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid-company .auth-register-row-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-fields-grid-company .auth-register-row-3 {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid-company .auth-register-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-fields-grid-company .auth-register-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-fields-grid-company .auth-register-row-3-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-fields-grid-company .auth-register-row-3-reverse {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper {
  position: relative;
  width: 100%;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0 0.6rem 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  background: transparent;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  cursor: pointer;
  direction: rtl;
  box-sizing: border-box;
  transition: border-bottom-color 0.2s ease;
  text-align: right;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger:focus {
  outline: none;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger:focus-visible {
  outline: 2px solid var(--black-main, #000);
  outline-offset: 2px;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger.error {
  border-bottom-color: var(--red-main);
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger .auth-form-select-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  margin-left: 1.2rem;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger .auth-form-select-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger .auth-form-select-icon path {
  fill: #1F2227;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger .auth-form-select-value {
  flex: 1;
  text-align: right;
  color: var(--black-main);
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger .auth-form-select-value.placeholder {
  color: #b3b3b3;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-trigger[aria-expanded=true] .auth-form-select-icon svg {
  transform: rotate(180deg);
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f8f8f8;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  max-height: 19.3rem;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 0.1rem;
  direction: rtl;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-dropdown.open {
  display: flex;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-dropdown .auth-form-select-option {
  padding: 0.5rem 1.2rem;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-main);
  cursor: pointer;
  text-align: right;
  transition: background-color 0.2s ease;
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-dropdown .auth-form-select-option:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.auth-modal .auth-modal-step-register .auth-form-select-wrapper .auth-form-select-dropdown .auth-form-select-option.selected {
  font-weight: 700;
}
.auth-modal .auth-modal-step-register .auth-register-footer-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-inline: 4.3rem;
  padding-bottom: 2rem;
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-footer-wrapper:has(#auth-register-step-indicator[style*="display: none"]) {
    justify-content: flex-end;
  }
}
.auth-modal .auth-modal-step-register .auth-register-footer-wrapper:has(#auth-register-step-indicator[style*="display: none"]) {
  justify-content: center;
}
@media (width <= 768px) {
  .auth-modal .auth-modal-step-register .auth-register-footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    adding-inline: 2rem;
    justify-content: center;
  }
}
.auth-modal .auth-modal-step-register .auth-register-general-error {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
}
.auth-modal .auth-modal-step-register .auth-register-general-error #auth-register-error-general-message {
  display: block !important;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--red-main);
  padding: 1rem;
  background-color: rgba(255, 0, 0, 0.05);
  border: 1px solid var(--red-main);
  border-radius: 0.4rem;
  text-align: center;
  direction: rtl;
}
@media (width <= 768px) {
  .auth-modal .auth-modal-step-register .auth-register-general-error {
    margin-bottom: 0.8rem;
  }
  .auth-modal .auth-modal-step-register .auth-register-general-error #auth-register-error-general-message {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}
.auth-modal .auth-modal-step-register .auth-register-step-indicator {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black-40, #999);
  text-align: center;
  margin: 0;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .auth-modal .auth-modal-step-register .auth-register-step-indicator {
    display: none !important;
  }
}
@media (width > 768px) {
  .auth-modal .auth-modal-step-register .auth-register-step-indicator:not([style*="display: none"]) {
    display: block !important;
  }
  .auth-modal .auth-modal-step-register .auth-register-step-indicator[style*="display: none"] {
    display: none !important;
  }
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register {
  padding: 0;
  background: transparent;
  border: none;
  justify-content: flex-end;
  gap: 1.2rem;
  margin: 0;
  flex-direction: row;
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register {
  width: 19.2rem;
  height: 5.2rem;
  background-color: var(--red-main);
  color: var(--white-main);
  border-radius: 0.4rem;
  padding: 0 2rem 0 1.2rem;
  gap: 0.8rem;
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register .auth-btn-icon {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register .auth-btn-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register .auth-btn-icon svg path {
  stroke: var(--white-main);
  fill: none;
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register .auth-btn-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white-main);
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register:hover {
  background-color: var(--red-100);
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register-back {
  width: 9.9rem;
  height: 5.2rem;
  background-color: transparent;
  border: 1px solid var(--grey-light, #ccc);
  border-radius: 0.4rem;
  color: var(--black-main);
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-modal .auth-modal-step-register .auth-modal-action-bar-register .auth-btn-register-back:hover {
  border-color: var(--red-main);
  color: var(--red-main);
}
.auth-modal .auth-modal-step-register .auth-modal-footer-register {
  margin-top: 0.5rem;
}
.auth-modal .auth-modal-step-register .auth-modal-footer-register .auth-modal-footer-divider {
  height: 0;
  border-top: 1px solid var(--red-10, #fbe5ea);
  margin: 0;
}
.auth-modal .auth-modal-step-register .auth-modal-footer-register .auth-modal-footer-links-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.2rem 0 2rem 0;
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main);
}
.auth-modal .auth-modal-step-register .auth-modal-footer-register .auth-modal-footer-links-register span {
  margin-left: 0.4rem;
}
.auth-modal .auth-modal-step-register .auth-modal-footer-register .auth-modal-footer-links-register .auth-link-login {
  font-weight: 700;
  text-decoration: underline;
  color: var(--black-main);
  transition: color 0.2s ease;
}
.auth-modal .auth-modal-step-register .auth-modal-footer-register .auth-modal-footer-links-register .auth-link-login:hover {
  color: var(--red-main);
}
.auth-modal .auth-welcome-step {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  direction: rtl;
  background-color: var(--white-main, #fff);
  padding-top: 6.7rem;
}
.auth-modal .auth-welcome-step.active {
  display: flex;
}
@media (width > 768px) {
  .auth-modal .auth-welcome-step {
    padding-top: 0;
  }
}
.auth-modal .auth-welcome-step .auth-welcome-banner {
  flex-shrink: 0;
  width: 100%;
  line-height: 0;
  background-color: var(--red-10, #fbe5ea);
}
.auth-modal .auth-welcome-step .auth-welcome-banner picture {
  display: block;
  width: 100%;
}
.auth-modal .auth-welcome-step .auth-welcome-banner .auth-welcome-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.auth-modal .auth-welcome-step .auth-welcome-body {
  flex: 1;
  padding: 2.4rem 2rem 1.6rem;
  text-align: center;
}
.auth-modal .auth-welcome-step .auth-welcome-title {
  font-family: var(--font-family-primary);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--red-main);
  margin: 0 0 1.2rem;
}
.auth-modal .auth-welcome-step .auth-welcome-text {
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  margin: 0 0 0.4rem;
}
.auth-modal .auth-welcome-step .auth-welcome-actions {
  flex-shrink: 0;
  padding: 0 2rem 2rem;
  border-top: 1px solid var(--red-30, rgba(0, 0, 0, 0.08));
}
.auth-modal .auth-welcome-step .auth-welcome-btn-register {
  width: 100%;
  max-width: 19.2rem;
  margin: 0 auto 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--red-main);
  color: white;
  border: none;
  border-radius: 0.4rem;
  padding: 0 2rem 0 1.2rem;
  height: 5.2rem;
  cursor: pointer;
  font-family: var(--font-family-primary);
  font-size: 1.6rem;
  font-weight: 700;
}
.auth-modal .auth-welcome-step .auth-welcome-btn-register .auth-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: 180deg;
}
.auth-modal .auth-welcome-step .auth-welcome-btn-register .auth-btn-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.auth-modal .auth-welcome-step .auth-welcome-btn-register .auth-btn-icon svg path {
  stroke: white;
  fill: none;
}
.auth-modal .auth-welcome-step .auth-welcome-btn-register:hover {
  opacity: 0.9;
}
.auth-modal .auth-welcome-step .auth-welcome-login-prompt {
  font-family: var(--font-family-primary);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--black-main);
  margin: 0;
  text-align: center;
}
.auth-modal .auth-welcome-step .auth-welcome-login-prompt .auth-welcome-link-login {
  text-decoration: underline;
  color: var(--black-main);
  font-weight: 700;
  transition: color 0.2s ease;
}
.auth-modal .auth-welcome-step .auth-welcome-login-prompt .auth-welcome-link-login:hover {
  color: var(--red-main);
}
.auth-modal .auth-welcome-step .auth-welcome-footer {
  flex-shrink: 0;
  width: 100%;
  background-color: var(--red-main);
  padding: 1.6rem 2rem;
  text-align: center;
}
.auth-modal .auth-welcome-step .auth-welcome-portal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: white;
  text-decoration: none;
  font-family: var(--font-family-primary);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}
.auth-modal .auth-welcome-step .auth-welcome-portal-link:hover {
  opacity: 0.9;
}
.auth-modal .auth-welcome-step .auth-welcome-portal-link .auth-welcome-portal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}
.auth-modal .auth-welcome-step .auth-welcome-portal-link .auth-welcome-portal-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}
.auth-modal .auth-welcome-step .auth-welcome-portal-link .auth-welcome-portal-icon svg path {
  stroke: white;
  fill: none;
}
@media (width > 768px) {
  .auth-modal .auth-welcome-step .auth-welcome-banner {
    min-height: 16rem;
  }
  .auth-modal .auth-welcome-step .auth-welcome-body {
    padding: 4rem 4rem 2rem;
  }
  .auth-modal .auth-welcome-step .auth-welcome-title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .auth-modal .auth-welcome-step .auth-welcome-text {
    font-size: 1.8rem;
  }
  .auth-modal .auth-welcome-step .auth-welcome-actions {
    padding: 0 4rem 2.4rem;
  }
  .auth-modal .auth-welcome-step .auth-welcome-footer {
    padding: 2rem 4rem;
  }
  .auth-modal .auth-welcome-step .auth-welcome-portal-link {
    font-size: 1.6rem;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
body.auth-modal-open {
  overflow: hidden;
}

body.page-refreshing {
  transition: opacity 0.5s ease;
  opacity: 0;
}
body.page-refreshing * {
  pointer-events: none;
}

.page-refresh-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-main, #ffffff);
  z-index: 99999;
  opacity: 0;
  animation: fadeInOverlay 0.5s ease forwards;
  pointer-events: none;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pac-container {
  z-index: 100000 !important;
  direction: rtl;
  text-align: right;
  font-family: var(--font-family-primary, "Simpler", sans-serif);
  border: 1px solid var(--black-main, #000);
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.pac-container .pac-item {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  cursor: pointer;
  text-align: right;
  direction: rtl;
}
.pac-container .pac-item:hover, .pac-container .pac-item.pac-item-selected {
  background-color: rgba(0, 0, 0, 0.05);
}
.pac-container .pac-item-query {
  font-size: 1.4rem;
  color: var(--black-main, #000);
}
.pac-container .pac-icon {
  margin-left: 0.8rem;
  margin-right: 0;
}
