/* ===== Auth Page Styles ===== */
body {
  margin: 0;
  padding: 0;
}
.auth-page {
  background: var(--bg-white);
  overflow: hidden;
  max-height: 100vh;
}



.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh !important;
  gap: 0;
  margin-top: 70px;
}

/* ===== Left Column: Form ===== */
.auth-form-column {
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px;
  overflow-y: auto;
  max-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f3eef9;
}

.auth-form-column::-webkit-scrollbar {
  width: 4px;
}

.auth-form-column::-webkit-scrollbar-track {
  background: #f3eef9;
}

.auth-form-column::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Header */
.auth-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 40px;
}

.auth-logo img {
  height: 50px;
  width: auto;
}

.auth-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  border: 1px solid var(--border-gray);
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--primary);
  font-family: "Almarai", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-lang-btn:hover {
  background: #e8ddf3;
}

.auth-lang-arrow {
  transition: transform 0.2s;
}

.auth-lang-wrapper.open .auth-lang-arrow {
  transform: rotate(180deg);
}

.auth-lang-wrapper {
  position: relative;
}

.auth-lang-wrapper.open .auth-lang-btn {
  background: #e8ddf3;
  box-shadow: 0 0 0 3px rgba(90, 36, 162, 0.1);
}

.auth-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-gray, #ebebef);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(50, 54, 61, 0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
  pointer-events: none;
}

.auth-lang-wrapper.open .auth-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.auth-lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Almarai", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark, #414651);
  direction: rtl;
  transition: all 0.15s;
  white-space: nowrap;
}

.auth-lang-option:hover {
  background: var(--primary-light, #efe8f6);
  color: var(--primary, #5a24a2);
}

.auth-lang-option.active {
  background: var(--primary-light, #efe8f6);
  color: var(--primary, #5a24a2);
  font-weight: 700;
}

.auth-lang-check {
  width: 16px;
  height: 16px;
  opacity: 0;
  color: var(--primary, #5a24a2);
  transition: opacity 0.15s;
}

.auth-lang-option.active .auth-lang-check {
  opacity: 1;
}

/* Forms Container */
.auth-forms {
  position: relative;
  flex: 1;
}

.auth-form {
  display: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
  pointer-events: none;
  margin-bottom: 30px;
}

.auth-form.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.auth-form-content {
  max-width: 100%;
}

/* Back Button */
.auth-back-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.auth-back-btn:hover {
  color: var(--primary);
}

.auth-back-btn img {
  width: 24px;
  height: 24px;
}

/* Titles and Subtitles */
.auth-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-family: "Almarai", sans-serif;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Client Type Tabs */
.auth-client-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.auth-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  background: var(--bg-white);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  flex-direction: column;
  text-align: center;
  font-family: "Almarai", sans-serif;
}

.auth-tab-btn:hover {
  border-color: var(--primary);
}

.auth-tab-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
}

.auth-tab-btn img:first-child {
  width: 32px;
  height: 32px;
}

.auth-tab-btn span {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 600;
}

.auth-tab-btn.active span {
  color: var(--primary);
}

.auth-tab-check {
  display: none;
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
}

.auth-tab-btn.active .auth-tab-check {
  display: block;
}

/* Form Groups */
.auth-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.auth-form-row .auth-form-group {
  margin-bottom: 0;
}

.auth-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 8px;
  font-family: "Almarai", sans-serif;
}

.auth-form-group input,
.auth-form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  background: var(--bg-white);
  font-size: 14px;
  color: var(--text-dark);
  font-family: "Almarai", sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}

.auth-form-group input:focus,
.auth-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 36, 162, 0.05);
}

.auth-form-group input::placeholder {
  color: var(--text-muted);
}

/* ===== Phone Input Component ===== */
.auth-phone-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  transition: border-color 0.2s ease;
  padding: 0;
  position: relative;
  background: var(--bg-white);
}

.auth-phone-input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 36, 162, 0.05);
}

.auth-phone-input.focused {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 36, 162, 0.05);
}

/* Phone Code Selector */
.auth-phone-code-selector {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 12px 12px 12px 12px;
  border-right: 1px solid var(--border-gray);
}

.auth-phone-code-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Almarai", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.auth-phone-code-btn:hover {
  color: var(--primary);
}

.auth-phone-code-text {
  min-width: 45px;
  text-align: center;
}

.auth-phone-code-chevron {
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.auth-phone-code-btn.active .auth-phone-code-chevron {
  transform: rotate(180deg);
}

/* Phone Code Dropdown */
.auth-phone-code-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 1000;
  min-width: 120px;
}

.auth-phone-code-selector.open .auth-phone-code-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Phone Code List */
.auth-phone-code-list {
  padding: 8px 0;
}

/* Phone Code Option */
.auth-phone-code-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "Almarai", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  text-align: right;
  position: relative;
}

.auth-phone-code-option:hover {
  background: var(--primary-light);
}

.auth-phone-code-check {
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.auth-phone-code-option.selected .auth-phone-code-check {
  opacity: 1;
}

/* Phone Number Input */
.auth-phone-number-input {
  flex: 1;
  padding: 12px 12px;
  border: none !important;
  background: transparent;
  font-size: 14px;
  color: var(--text-dark);
  font-family: "Almarai", sans-serif;
  outline: none;
  text-align: right;
  width: 100%;
}

.auth-phone-number-input::placeholder {
  color: var(--text-muted);
}

/* Password Wrapper */
.auth-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 0 12px;
  transition: border-color 0.2s ease;
  background: var(--bg-white);
}

.auth-password-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 36, 162, 0.05);
}

.auth-password-wrapper input {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-dark);
  font-family: "Almarai", sans-serif;
  outline: none;
}

.auth-password-toggle {
  position: absolute;
  left: 0;
  bottom: 10px;
  background: none;
  border: none;
  cursor: pointer !important;
  color: var(--text-muted);
  padding: 4px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-password-toggle:hover {
  color: var(--primary);
}

.auth-password-toggle img {
  width: 20px;
  height: 20px;
}

/* Checkbox */
.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-dark);
}

.auth-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
}

.auth-checkbox label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}

/* Submit Button */
.auth-submit-btn {
  width: 100%;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Almarai", sans-serif;
  margin-bottom: 16px;
}

.auth-submit-btn:hover {
  background: #4a1d88;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 36, 162, 0.15);
}

/* Divider */
.auth-divider {
  text-align: center;
  color: var(--text-muted);
  margin: 20px 0;
  font-size: 13px;
}

/* Links */
.auth-link,
.auth-link-primary {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  border: none;
  background: none;
  font-family: "Almarai", sans-serif;
  font-size: 13px;
}

.auth-link:hover,
.auth-link-primary:hover {
  color: #4a1d88;
}

/* Footer */
.auth-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* OTP Wrapper */
.auth-otp-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: 28px;
}

.auth-otp-input {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  font-size: 24px;
  text-align: center;
  font-family: "Almarai", sans-serif;
  color: var(--primary);
  background: var(--bg-white);
  padding: 12px;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.auth-otp-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 36, 162, 0.05);
  outline: none;
}

/* OTP Timer */
.auth-otp-timer {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.auth-timer {
  margin-right: 4px;
  color: var(--primary);
  font-weight: 600;
}

/* Password Requirements */
.auth-password-requirements {
  background: var(--primary-light);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.auth-requirements-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.auth-requirements-list {
  list-style: none;
  padding: 0;
}

.auth-requirements-list li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-right: 20px;
  position: relative;
}

.auth-requirements-list li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #10b981;
  font-weight: bold;
}

.auth-requirements-list li.invalid:before {
  content: "✗";
  color: #ef4444;
}

/* Success Icon */
.auth-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* ===== Right Column: Decorative ===== */
.auth-decorative-column {
  background: url("/images/auth.jpg") center/cover no-repeat;
  background-color: #5a24a2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}

.auth-decorative-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(90, 36, 162, 0.3);
  z-index: 1;
  pointer-events: none;
}

.auth-gradient-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatDecor 8s ease-in-out infinite;
  display: none;
  z-index: 2;
}

@keyframes floatDecor {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Cards */
.auth-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 3;
  animation: slideUpCard 0.6s ease-out backwards;
}

.auth-card-1 {
  animation-delay: 0.2s;
}

.auth-card-2 {
  animation-delay: 0.3s;
}

.auth-card-3 {
  animation-delay: 0.4s;
}

@keyframes slideUpCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-family: "Almarai", sans-serif;
}

.auth-card-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.auth-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #5a24a2 0%, #8b5ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.auth-card-icon svg {
  color: white;
}

.auth-card-action {
  padding: 6px 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s ease;
  font-family: "Almarai", sans-serif;
}

.auth-card-action:hover {
  background: #4a1d88;
}

.auth-card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dark);
}

/* Chart Card */
.auth-chart-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.auth-chart-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 60px;
}

.auth-bar {
  flex: 1;
  background: rgba(90, 36, 162, 0.3);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

/* ===== Custom Country Selector ===== */
.auth-country-selector {
  position: relative;
  width: 100%;
}

.auth-country-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--border-gray);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
  font-family: "Almarai", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  text-align: right;
  position: relative;
}

.auth-country-btn:hover {
  border-bottom-color: var(--primary);
}

.auth-country-btn.active {
  border-bottom-color: var(--primary);
}

.auth-country-flag {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.auth-country-text {
  flex: 1;
  text-align: right;
  font-weight: 500;
}

.auth-country-chevron {
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.auth-country-btn.active .auth-country-chevron {
  transform: rotate(180deg);
}

/* Country Dropdown */
.auth-country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
  padding: 12px 0;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  direction: rtl;
}

.auth-country-dropdown::-webkit-scrollbar {
  width: 4px;
}

.auth-country-dropdown::-webkit-scrollbar-track {
  background: #f3eef9;
}

.auth-country-dropdown::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.auth-country-selector.open .auth-country-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Country Search */
.auth-country-search {
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-bottom: 1px solid var(--border-gray);
  background: var(--primary-light);
  font-family: "Almarai", sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
  margin-bottom: 8px;
}

.auth-country-search::placeholder {
  color: var(--text-muted);
}

.auth-country-search:focus {
  border-bottom-color: var(--primary);
}

/* Country List */
.auth-country-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Country Option */
.auth-country-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "Almarai", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  text-align: right;
  position: relative;
}

.auth-country-option:hover {
  background: var(--primary-light);
}

.auth-country-option img {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.auth-country-option span {
  flex: 1;
  font-weight: 500;
}

.auth-country-check {
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.auth-country-option.selected .auth-country-check {
  opacity: 1;
}

/* Responsive */

/* --- 1440px: Optimize wide layout --- */
@media (min-width: 1440px) {
  .auth-form-column {
    padding: 30px;
  }

  .auth-form-content {
    max-width: 80%;
  }
}

/* --- 1024px: Remove decorative column --- */
@media (max-width: 1024px) {
  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-decorative-column {
    display: none;
  }

  .auth-form-column {
    padding: 30px;
    max-height: none;
  }

  .auth-form-content {
    max-width: 80%;
    margin: 0 auto;
  }

  .auth-header {
    margin-bottom: 30px;
  }

  .auth-title {
    font-size: 24px;
  }
}

/* --- 768px: Tablet portrait --- */
@media (max-width: 768px) {
  .auth-form-column {
    padding: 24px;
  }

  .auth-form-content {
    max-width: 100%;
  }

  .auth-header {
    margin-bottom: 24px;
  }

  .auth-title {
    font-size: 22px;
  }

  .auth-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

/* --- 425px: Large mobile --- */
@media (max-width: 425px) {
  .auth-form-column {
    padding: 20px;
  }

  .auth-header {
    margin-bottom: 20px;
  }

  .auth-title {
    font-size: 20px;
  }

  .auth-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-client-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .auth-tab-btn {
    padding: 10px 12px;
    gap: 6px;
  }

  .auth-otp-wrapper {
    gap: 10px;
    justify-content: center;
  }

  .auth-otp-input {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .auth-submit-btn {
    padding: 12px 20px;
  }

  .auth-form-group input,
  .auth-form-group select {
    padding: 10px 14px;
    font-size: 13px;
  }

  .auth-form-group label {
    font-size: 12px;
  }
}

/* --- 375px: Standard mobile --- */
@media (max-width: 375px) {
  .auth-form-column {
    padding: 16px;
  }

  .auth-title {
    font-size: 18px;
  }

  .auth-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .auth-client-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auth-tab-btn {
    flex-direction: row;
    padding: 10px 14px;
  }

  .auth-tab-btn img:first-child {
    width: 24px;
    height: 24px;
  }

  .auth-otp-wrapper {
    gap: 8px;
  }

  .auth-otp-input {
    width: 48px;
    height: 48px;
    font-size: 20px;
    padding: 8px;
  }

  .auth-form-group {
    margin-bottom: 16px;
  }

  .auth-checkbox {
    margin-bottom: 16px;
  }

  .auth-phone-code-selector {
    padding: 10px;
  }
}

/* --- 320px: Smallest mobile --- */
@media (max-width: 320px) {
  .auth-form-column {
    padding: 12px;
  }

  .auth-header {
    margin-bottom: 16px;
  }

  .auth-title {
    font-size: 17px;
  }

  .auth-otp-wrapper {
    gap: 6px;
  }

  .auth-otp-input {
    width: 42px;
    height: 42px;
    font-size: 18px;
    padding: 6px;
  }

  .auth-form-group input,
  .auth-form-group select {
    padding: 10px 12px;
    font-size: 13px;
  }

  .auth-submit-btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .auth-lang-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .auth-success-icon svg {
    width: 48px;
    height: 48px;
  }

  .auth-password-requirements {
    padding: 10px 12px;
  }
}
