/*!*********************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/AddressInput/AddressInput.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************/
.AddressInput_wrapper__bYYyU {
  position: relative;
  width: 100%;
}

.AddressInput_inputWrapper__5c2VN {
  position: relative;
}

.AddressInput_input___OARE {
  width: 100%;
  padding: 14px var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.AddressInput_input___OARE::placeholder {
  color: var(--color-text-muted);
}

.AddressInput_input___OARE:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.AddressInput_inputError__7RlOV {
  border-color: var(--color-error);
}

.AddressInput_inputError__7RlOV:focus {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Dropdown */
.AddressInput_dropdown__ai9Sy {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background-color: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  max-height: 240px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
}

.AddressInput_option__k7BJW {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px var(--space-md);
  cursor: pointer;
  border-bottom: 1px solid var(--color-border-light);
  transition: background-color 0.1s ease;
}

.AddressInput_option__k7BJW:last-child {
  border-bottom: none;
}

.AddressInput_option__k7BJW:hover,
.AddressInput_optionActive__XO3zs {
  background-color: var(--color-bg-light);
}

.AddressInput_optionStreet__W0I88 {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-primary);
}

.AddressInput_optionMeta__MVovk {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.AddressInput_errorMessage__t1zi0 {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: 4px;
  line-height: 1.4;
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/Button/Button.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************/
.Button_button__zxPj3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.Button_button__zxPj3:active {
  transform: scale(0.98);
}

.Button_button__zxPj3:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Primary — purple gradient */
.Button_primary__bxsR6 {
  background: var(--color-primary-gradient);
  color: #fff;
}

.Button_primary__bxsR6:hover:not(:disabled) {
  opacity: 0.9;
}

/* itsme — red */
.Button_itsme__DrtGj {
  background-color: var(--color-cta-red);
  color: #fff;
}

.Button_itsme__DrtGj:hover:not(:disabled) {
  opacity: 0.9;
}

/* Outlined — white bg with border */
.Button_outlined__7Q9ZU {
  background-color: var(--color-bg-white);
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
}

.Button_outlined__7Q9ZU:hover:not(:disabled) {
  background-color: var(--color-bg-light);
}

/* Ghost — no bg */
.Button_ghost__rwB_Z {
  background: none;
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-md);
}

.Button_ghost__rwB_Z:hover:not(:disabled) {
  background-color: rgba(var(--color-primary-rgb), 0.05);
}

/* Size variants */
.Button_sm__PkQw5 {
  padding: 10px var(--space-md);
  font-size: var(--text-sm);
}

.Button_lg__lgtCh {
  padding: 16px var(--space-xl);
  font-size: var(--text-lg);
}

/* Loading spinner */
.Button_loading__pBZ96 {
  pointer-events: none;
}

.Button_spinner__IG_am {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: Button_spin__aTZGS 0.6s linear infinite;
}

@keyframes Button_spin__aTZGS {
  to {
    transform: rotate(360deg);
  }
}

/* Icon wrapper — after text */
.Button_iconWrapper__2QtPO {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/Checkbox/Checkbox.module.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************/
.Checkbox_checkboxGroup__Umkw6 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 0;
  min-height: 44px;
}

.Checkbox_checkboxGroup__Umkw6.Checkbox_disabled__gc_dK {
  cursor: not-allowed;
  opacity: 0.5;
}

.Checkbox_checkbox__h8s60 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg-white);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.Checkbox_checkbox__h8s60:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.Checkbox_checkbox__h8s60:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.Checkbox_checkbox__h8s60:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.Checkbox_checkbox__h8s60:disabled {
  cursor: not-allowed;
}

.Checkbox_checkboxError__PGbe6 {
  border-color: var(--color-error);
}

.Checkbox_label__OHU6e {
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  line-height: 1.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.Checkbox_label__OHU6e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.Checkbox_label__OHU6e a:hover {
  color: var(--color-primary-dark);
}

.Checkbox_required__mjSnl {
  font-size: var(--text-xs);
  color: var(--color-error);
  display: block;
  margin-top: 2px;
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/ConfirmDialog/ConfirmDialog.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************/
.ConfirmDialog_overlay__BgDqA {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.ConfirmDialog_dialog__MG5lJ {
  position: relative;
  background-color: var(--color-bg-white);
  border-radius: 16px;
  padding: var(--space-lg);
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.ConfirmDialog_title__omnk5 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.ConfirmDialog_message__RRrCL {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.ConfirmDialog_actions__oHKP8 {
  display: flex;
  gap: 12px;
}

.ConfirmDialog_cancelButton__j_t0b,
.ConfirmDialog_confirmButton__r4q55 {
  flex: 1 1;
  padding: 12px var(--space-md);
  border-radius: 12px;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  font-family: inherit;
  transition: background-color 0.15s ease;
}

.ConfirmDialog_cancelButton__j_t0b {
  background: none;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-primary);
}

.ConfirmDialog_cancelButton__j_t0b:hover {
  background-color: var(--color-bg-light);
}

.ConfirmDialog_confirmButton__r4q55 {
  background-color: var(--color-primary);
  border: none;
  color: #fff;
}

.ConfirmDialog_confirmButton__r4q55:hover {
  opacity: 0.9;
}

.ConfirmDialog_confirmDanger__bkFfA {
  background-color: var(--color-error);
}

.ConfirmDialog_confirmDanger__bkFfA:hover {
  background-color: #c62828;
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/DateInput/DateInput.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************/
.DateInput_wrapper__RPJXn {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.DateInput_label__1JYor {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.DateInput_segments__C1G49 {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 var(--space-md);
  height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--color-bg-white);
  position: relative;
}

.DateInput_segments__C1G49:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
  animation: DateInput_focusPulse__P0rk_ 0.4s ease-out;
}

@keyframes DateInput_focusPulse__P0rk_ {
  0% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.3); }
  100% { box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1); }
}

.DateInput_segmentsError__N6Wrw {
  border-color: var(--color-error);
}

.DateInput_segmentsError__N6Wrw:focus-within {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.DateInput_segment__B_F_x {
  border: none;
  outline: none;
  background: none;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  text-align: center;
  padding: 0;
  font-family: inherit;
}

.DateInput_segment__B_F_x::placeholder {
  color: var(--color-text-muted);
}

.DateInput_segmentDay__Svk1Z,
.DateInput_segmentMonth__iWhGA {
  width: 28px;
}

.DateInput_segmentYear__Pkick {
  width: 44px;
}

.DateInput_separator__BSqsX {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  padding: 0 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Calendar icon button */
.DateInput_calendarBtn__iV0YR {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
  min-width: 44px;
  min-height: 44px;
}

.DateInput_calendarBtn__iV0YR:hover {
  color: var(--color-primary);
}

/* Hidden native date picker — positioned over the calendar button */
.DateInput_nativePicker__0wQ6_ {
  position: absolute;
  right: 8px;
  top: 0;
  width: 28px;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}

.DateInput_errorMessage__PM5Ld {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: 4px;
  line-height: 1.4;
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/Input/Input.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
.Input_inputGroup__oJjyf {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.Input_label__Bqewr {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.Input_inputWrapper__aas9n {
  position: relative;
  display: flex;
  align-items: center;
}

.Input_input__8EJE1 {
  width: 100%;
  padding: 14px var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.Input_input__8EJE1::placeholder {
  color: var(--color-text-muted);
}

/* Focus state — purple border with pulse */
.Input_input__8EJE1:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
  animation: Input_focusPulse__epvRD 0.4s ease-out;
}

@keyframes Input_focusPulse__epvRD {
  0% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.3); }
  100% { box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1); }
}

/* Filled state — slightly darker border */
.Input_inputFilled__T_rEG {
  border-color: var(--color-text-secondary);
}

/* Error state — red border */
.Input_inputError__JtvcB {
  border-color: var(--color-error);
}

.Input_inputError__JtvcB:focus {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Disabled state */
.Input_input__8EJE1:disabled {
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  border-color: var(--color-border-light);
  cursor: not-allowed;
}

/* With prefix (e.g., +32) */
.Input_hasPrefix__uuDtK {
  padding-left: 64px;
}

.Input_prefix__SUCZk {
  position: absolute;
  left: var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* With suffix (e.g., eye icon) */
.Input_hasSuffix__nQn__ {
  padding-right: 48px;
}

.Input_suffix__SapNA {
  position: absolute;
  right: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: var(--space-xs);
  font-size: var(--text-lg);
  width: 44px;
  height: 44px;
}

.Input_suffix__SapNA:hover {
  color: var(--color-text-secondary);
}

/* Error message */
.Input_errorMessage__Ul4VX {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: 4px;
  line-height: 1.4;
}

/* Helper text */
.Input_helperText__FmGHs {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.4;
  white-space: pre-line;
}

/* Select variant */
.Input_select__I0H7k {
  width: 100%;
  padding: 14px var(--space-md);
  padding-right: 40px;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.Input_select__I0H7k:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.Input_selectWrapper__My8xH {
  position: relative;
}

.Input_selectArrow__kRwm_ {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* Placeholder color for select */
.Input_selectPlaceholder___oHlB {
  color: var(--color-text-muted);
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/NissInput/NissInput.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************/
.NissInput_wrapper__53976 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.NissInput_label__fcpKp {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.NissInput_field__ejOOW {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 var(--space-md);
  height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--color-bg-white);
  cursor: text;
}

.NissInput_field__ejOOW:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
  animation: NissInput_focusPulse__bS6Dz 0.4s ease-out;
}

@keyframes NissInput_focusPulse__bS6Dz {
  0% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.3); }
  100% { box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1); }
}

.NissInput_fieldError__9YtDH {
  border-color: var(--color-error);
}

.NissInput_fieldError__9YtDH:focus-within {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.NissInput_input__EYTKz {
  border: none;
  outline: none;
  background: none;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  width: 100%;
  padding: 0;
  font-family: inherit;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}

.NissInput_input__EYTKz::placeholder {
  color: var(--color-text-muted);
  letter-spacing: 0;
}

.NissInput_errorMessage__RByyE {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: 4px;
  line-height: 1.4;
}

.NissInput_helperText__LAsJR {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/PhoneInput/PhoneInput.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************/
.PhoneInput_wrapper__974UD {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.PhoneInput_label__SDYl8 {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.PhoneInput_field__7Fbs9 {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--color-bg-white);
  overflow: hidden;
}

.PhoneInput_field__7Fbs9:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
  animation: PhoneInput_focusPulse__9mtLR 0.4s ease-out;
}

@keyframes PhoneInput_focusPulse__9mtLR {
  0% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.3); }
  100% { box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1); }
}

.PhoneInput_fieldError__ryHJh {
  border-color: var(--color-error);
}

.PhoneInput_fieldError__ryHJh:focus-within {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.PhoneInput_countrySelect__c1M1A {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px 0 var(--space-md);
  border: none;
  background: none;
  height: 100%;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-right: 1px solid var(--color-border-light);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  min-width: 80px;
}

.PhoneInput_countrySelect__c1M1A:focus {
  outline: none;
  background-color: var(--color-bg-light);
}

.PhoneInput_input__DvNrM {
  flex: 1 1;
  border: none;
  outline: none;
  background: none;
  font-size: var(--text-base);
  color: var(--color-text-primary);
  padding: 0 var(--space-md);
  height: 100%;
  font-family: inherit;
}

.PhoneInput_input__DvNrM::placeholder {
  color: var(--color-text-muted);
}

.PhoneInput_errorMessage__iyROh {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: 4px;
  line-height: 1.4;
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/RouteLoader/routeLoader.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************/
.routeLoader_wrap__il6OU {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.routeLoader_logo__xjXI3 {
  height: 52px;
  width: auto;
  will-change: opacity, transform;
  animation: routeLoader_rlBreathe__htxQu 1.6s ease-in-out infinite;
}

.routeLoader_bar__nnVi_ {
  position: relative;
  width: 140px;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
}

.routeLoader_bar__nnVi_::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary, #8e54f6),
    transparent
  );
  animation: routeLoader_rlSlide__XVt_o 1.2s ease-in-out infinite;
}

@keyframes routeLoader_rlBreathe__htxQu {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes routeLoader_rlSlide__XVt_o {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(360%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .routeLoader_logo__xjXI3 {
    animation-duration: 2.6s;
  }
  .routeLoader_bar__nnVi_::after {
    animation-duration: 2.6s;
  }
}

.routeLoader_srOnly___OQ8P {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/Stepper/Stepper.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************/
.Stepper_stepper__8BXrh {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-md) 0;
}

.Stepper_step__rcb2L {
  display: flex;
  align-items: center;
  gap: 0;
}

.Stepper_stepCircle__eG1YC {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Active step — purple */
.Stepper_stepActive__gwmZM {
  background-color: var(--color-primary);
  color: #fff;
}

/* Completed step — green with checkmark */
.Stepper_stepCompleted__oh0rr {
  background-color: #22C55E;
  color: #fff;
}

/* Inactive step — gray outline */
.Stepper_stepInactive__TiCuP {
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}

/* Connector line between steps */
.Stepper_connector__l23j_ {
  width: 40px;
  height: 2px;
  background-color: var(--color-border);
  transition: background-color 0.3s ease;
}

.Stepper_connectorCompleted__0_VKL {
  background-color: #22C55E;
}

@media (min-width: 768px) {
  .Stepper_connector__l23j_ {
    width: 60px;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/shared/components/ui/TrustSignals/TrustSignals.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************/
.TrustSignals_container__xHl3U {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: rgba(var(--color-primary-rgb), 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.TrustSignals_signal__TGXo7 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.TrustSignals_icon__7T6at {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.TrustSignals_ageIcon__82koz {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--color-error);
  border: 2px solid var(--color-error);
  border-radius: 4px;
  line-height: 1;
}

.TrustSignals_text__ptZVB {
  /* Left-align so wrapped lines start at the same edge — the register landing
     centers its content, which would otherwise center these multi-line items. */
  text-align: left;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.TrustSignals_link__mgNcH {
  color: var(--color-primary);
  text-decoration: underline;
}

.TrustSignals_link__mgNcH:hover {
  color: var(--color-primary-dark);
}

/* Mobile: compact strip */
@media (max-width: 767px) {
  .TrustSignals_container__xHl3U {
    padding: var(--space-md);
    gap: var(--space-sm);
  }
}

/* Desktop: sits in sidebar, slightly different styling */
@media (min-width: 1024px) {
  .TrustSignals_container__xHl3U {
    position: -webkit-sticky;
    position: sticky;
    top: var(--space-xl);
  }
}

