@charset "UTF-8";
:root {
  --kinmory-navy: #2C3E50;
  --kinmory-navy-light: #34495E;
  --kinmory-navy-dark: #1A252F;
  --kinmory-gold: #2C3E50;
  --kinmory-gold-light: #34495E;
  --kinmory-gold-dark: #1A252F;
  --kinmory-sage: #8B9A8E;
  --kinmory-lavender: #9B8FA9;
  --kinmory-cream: #F8F6F1;
  --kinmory-pearl: #E8E5DC;
  --kinmory-white: #FFFFFF;
  --kinmory-light-gray: #F5F5F5;
  --kinmory-gray: #CCCCCC;
  --kinmory-dark-gray: #666666;
  --kinmory-charcoal: #333333;
  --kinmory-text: #333333;
  --kinmory-text-muted: #6C757D;
  --light-color: #f9fafb;
  --dark-color: #1f2937;
  --border-color: #e5e7eb;
  --kinmory-success: #5A7C5A;
  --kinmory-danger: #A55A5A;
  --kinmory-warning: #C4A05A;
  --kinmory-info: #5A7FA5;
  --kinmory-shadow-sm: 0 2px 4px rgba(44, 62, 80, 0.08);
  --kinmory-shadow-md: 0 4px 12px rgba(44, 62, 80, 0.12);
  --kinmory-shadow-lg: 0 8px 24px rgba(44, 62, 80, 0.16);
  --kinmory-shadow-hover: 0 6px 16px rgba(44, 62, 80, 0.14);
  --kinmory-radius-sm: 4px;
  --kinmory-radius-md: 8px;
  --kinmory-radius-lg: 12px;
  --kinmory-radius-xl: 16px;
  --kinmory-font-body: DM Sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --kinmory-font-heading: Gilda Display, Playfair Display, Georgia, Times New Roman, serif;
  --kinmory-space-xs: 0.25rem;
  --kinmory-space-sm: 0.5rem;
  --kinmory-space-md: 1rem;
  --kinmory-space-lg: 1.5rem;
  --kinmory-space-xl: 2rem;
  --kinmory-space-2xl: 3rem;
  --kinmory-transition: all 0.3s ease;
  --kinmory-transition-fast: all 0.15s ease;
  --navbar-bg: #112749;
  --hero-bg-dark: #0f2744;
  --hero-card-dark: #1a3a5c;
  --btn-primary-bg: #3b82f6;
  --btn-primary-bg-hover: #2563eb;
  --text-primary: #03070C;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-inverse: #FFFFFF;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9FAFB;
  --bg-muted: #F3F4F6;
  --bg-hover: #E5E7EB;
  --border-default: #E1E2E2;
  --border-light: #E5E7EB;
  --border-dark: #D1D5DB;
  --status-success: #22c55e;
  --status-success-bg: #f0fdf4;
  --status-success-text: #166534;
  --status-warning: #f59e0b;
  --status-warning-bg: #fffbeb;
  --status-warning-text: #92400e;
  --status-danger: #ef4444;
  --status-danger-bg: #fef2f2;
  --status-danger-text: #991b1b;
  --status-info: #3b82f6;
  --status-info-bg: #eff6ff;
  --status-info-text: #1e40af;
  --shadow-sm: 0 2px 4px rgba(44, 62, 80, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 62, 80, 0.12);
  --shadow-lg: 0 8px 24px rgba(44, 62, 80, 0.16);
  --shadow-hover: 0 6px 16px rgba(44, 62, 80, 0.14);
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --font-heading: Gilda Display, Playfair Display, Georgia, Times New Roman, serif;
  --font-body: DM Sans, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.5rem;
  --lh-tight: 1.2;
  --lh-snug: 1.3;
  --lh-normal: 1.4;
  --lh-relaxed: 1.6;
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.3s ease;
  --container-max: 1280px;
  --content-pad: 5%;
  --fg1: #03070C;
  --fg2: #4B5563;
  --fg3: #6B7280;
  --bg: #FFFFFF;
  --bg2: #F9FAFB;
}

.auth {
  padding: 0 5%;
}

.auth__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: auto;
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .auth__wrapper {
    padding: 5rem 0;
  }
}

.auth__container {
  margin: 0 auto;
  width: 100%;
  max-width: 24rem;
}
.auth__container--wide {
  max-width: 32rem;
}

.auth__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .auth__header {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .auth__header {
    margin-bottom: 3rem;
  }
}

.auth__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: rgba(44, 62, 80, 0.1);
  color: #2C3E50;
}
.auth__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
.auth__icon--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.auth__icon--warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.auth__icon--danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.auth__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .auth__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.auth__subtitle {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .auth__subtitle {
    font-size: 1.125rem;
  }
}

.auth__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.auth__field {
  display: grid;
  width: 100%;
  align-items: start;
}

.auth__label {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}
.auth__label .auth__required {
  color: #ef4444;
  margin-left: 0.25rem;
}

.auth__input {
  display: flex;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: #111827;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  transition: all 0.2s ease;
}
.auth__input::-moz-placeholder {
  color: #6C757D;
}
.auth__input::placeholder {
  color: #6C757D;
}
.auth__input:focus {
  outline: none;
  border-color: #2C3E50;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}
.auth__input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.auth__input--select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.auth__required {
  color: #ef4444;
  margin-left: 0.125rem;
}

.auth__hint {
  font-size: 0.75rem;
  color: #6C757D;
  margin-top: 0.25rem;
}

.auth__error {
  font-size: 0.875rem;
  color: #ef4444;
  margin-top: 0.25rem;
}
.auth__error--box {
  padding: 1rem;
  border-radius: 0;
  background-color: #fef2f2;
  border: 1px solid #ef4444;
}

.auth__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0;
  font-size: 0.875rem;
}
.auth__alert-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}
.auth__alert strong {
  display: block;
  margin-bottom: 0.25rem;
}
.auth__alert p {
  margin: 0;
}
.auth__alert--error {
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  color: #b91c1c;
}
.auth__alert--success {
  background-color: #f0fdf4;
  border: 1px solid #22c55e;
  color: #15803d;
}
.auth__alert--info {
  background-color: #eff6ff;
  border: 1px solid #3b82f6;
  color: #1d4ed8;
}
.auth__alert--warning {
  background-color: #fffbeb;
  border: 1px solid #f59e0b;
  color: #b45309;
}

.auth__info {
  padding: 1.25rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
}
.auth__info p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.auth__info p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.auth__info strong {
  font-weight: 600;
}
.auth__info--success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.auth__info--warning {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.auth__info--danger {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.auth__info--info {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.auth__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auth__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .auth__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.auth__row--start {
  align-items: start;
}

.auth__conditional {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth__checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.auth__checkbox input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}
.auth__checkbox input[type=checkbox]:checked {
  background-color: #2C3E50;
  border-color: #2C3E50;
}
.auth__checkbox span {
  font-size: 0.875rem;
  color: #111827;
  line-height: 1.4;
}

.auth__checkbox-label {
  font-size: 0.875rem;
  color: #111827;
}

.auth__link {
  font-size: 0.875rem;
  color: #111827;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.auth__link:hover {
  color: #2C3E50;
}
.auth__link--bold {
  font-weight: 500;
}

.auth__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background-color: #2C3E50;
  border: 1px solid #2C3E50;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.auth__submit:hover {
  background-color: #1A252F;
  border-color: #1A252F;
}
.auth__submit:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.3);
}
.auth__submit:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.auth__submit-text {
  display: inline;
}

.auth__submit-spinner {
  display: none;
  align-items: center;
  justify-content: center;
}

.auth__spinner-icon {
  width: 1.25rem;
  height: 1.25rem;
  animation: auth-spin 1s linear infinite;
}

.auth__spinner-track {
  opacity: 0.25;
}

.auth__spinner-path {
  opacity: 0.75;
}

@keyframes auth-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.auth__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .auth__divider {
    margin: 1.25rem 0;
  }
}
.auth__divider::before, .auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
}
.auth__divider span {
  font-size: 0.875rem;
  color: #6C757D;
}

.auth__social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.auth__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.auth__social-btn:hover {
  background-color: #F5F5F5;
}
.auth__social-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}
.auth__social-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.auth__footer {
  text-align: center;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .auth__footer {
    margin-top: 1.5rem;
  }
}

.auth__footer-text {
  font-size: 0.875rem;
  color: #6C757D;
}
.auth__footer-text a {
  color: #111827;
  text-decoration: underline;
}
.auth__footer-text a:hover {
  color: #2C3E50;
}

.auth__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .auth__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.auth__requirements {
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.auth__requirement {
  font-size: 0.75rem;
  color: #6C757D;
  list-style-type: disc;
}
.auth__requirement--met {
  color: #22c55e;
}

.manage {
  padding: 0 5%;
}

.manage__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 4rem 0;
}

.manage__container {
  margin: 0 auto;
  width: 100%;
  max-width: 32rem;
}

.manage__card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.manage__header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.manage__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.manage__title svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2C3E50;
}

.manage__subtitle {
  font-size: 0.875rem;
  color: #6C757D;
  margin: 0;
}

.manage__body {
  padding: 1.5rem;
}

.manage__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.manage__field {
  display: flex;
  flex-direction: column;
}

.manage__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.manage__label svg {
  width: 1rem;
  height: 1rem;
  color: #6C757D;
}
.manage__label--required::after {
  content: "*";
  color: #ef4444;
  margin-left: 0.125rem;
}

.manage__input {
  display: flex;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: #111827;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  transition: all 0.2s ease;
}
.manage__input::-moz-placeholder {
  color: #6C757D;
}
.manage__input::placeholder {
  color: #6C757D;
}
.manage__input:focus {
  outline: none;
  border-color: #2C3E50;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}
.manage__input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background-color: #F5F5F5;
}

.manage__hint {
  font-size: 0.75rem;
  color: #6C757D;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.manage__hint svg {
  width: 0.875rem;
  height: 0.875rem;
}

.manage__error {
  font-size: 0.875rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

.manage__validation {
  padding: 1rem;
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  border-radius: 0;
  margin-bottom: 1rem;
}
.manage__validation-title {
  font-weight: 600;
  color: #b91c1c;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.manage__validation-title svg {
  width: 1rem;
  height: 1rem;
}
.manage__validation ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #b91c1c;
}

.manage__status {
  padding: 0.75rem 1rem;
  border-radius: 0;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.manage__status svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}
.manage__status--success {
  background-color: #f0fdf4;
  border: 1px solid #22c55e;
  color: #15803d;
}
.manage__status--error {
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  color: #b91c1c;
}

.manage__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.manage__alert svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.manage__alert strong {
  display: block;
  margin-bottom: 0.25rem;
}
.manage__alert p {
  margin: 0;
}
.manage__alert p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.manage__alert ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}
.manage__alert--info {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
.manage__alert--success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.manage__alert--warning {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.manage__alert--danger {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.manage__divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 1.5rem 0;
}

.manage__divider-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6C757D;
}
.manage__divider-text::before, .manage__divider-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
}

.manage__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.manage__text-center {
  text-align: center;
}

.manage__text-muted {
  color: #6C757D;
  font-size: 0.875rem;
}

.manage__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #22c55e;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.manage__verified svg {
  width: 1rem;
  height: 1rem;
}

.manage__input-wrapper {
  position: relative;
}
.manage__input-wrapper .manage__input {
  padding-right: 2.5rem;
}
.manage__input-wrapper .manage__input-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #22c55e;
}
.manage__input-wrapper .manage__input-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.manage-nav {
  margin-bottom: 1.5rem;
}

.manage-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .manage-nav__list {
    flex-direction: column;
  }
}

.manage-nav__item {
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .manage-nav__item {
    flex: none;
  }
}

.manage-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.2s ease;
}
.manage-nav__link:hover {
  background-color: #F5F5F5;
  border-color: #2C3E50;
}
.manage-nav__link.active {
  background-color: #2C3E50;
  border-color: #2C3E50;
  color: white;
}
.manage-nav__link.active .manage-nav__icon {
  color: white;
}

.manage-nav__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #6C757D;
}

.verify-hero {
  background-color: #112749;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .verify-hero {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .verify-hero {
    padding: 6rem 0;
  }
}

.verify-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.verify-hero__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .verify-hero__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .verify-hero__title {
    font-size: 3rem;
  }
}

.verify-hero__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .verify-hero__text {
    font-size: 1.125rem;
  }
}

.verify-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .verify-section {
    padding: 5rem 0;
  }
}

.verify-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.verify-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .verify-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .verify-section__content {
    order: 1;
  }
}

.verify-section__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .verify-section__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .verify-section__title {
    font-size: 2.25rem;
  }
}

.verify-section__text {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.verify-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .verify-section__image {
    order: 2;
  }
}
.verify-section__image img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #F5F5F5;
}

.verify-success {
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .verify-success {
    padding: 5rem 0;
  }
}

.verify-success__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.verify-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  color: #2C3E50;
}
.verify-success__icon svg {
  width: 100%;
  height: 100%;
}

.verify-success__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.verify-success__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .verify-success__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .verify-success__title {
    font-size: 2.25rem;
  }
}

.verify-success__text {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.verify-success__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.verify-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.verify-image img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #F5F5F5;
}

.verify-next {
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .verify-next {
    padding: 5rem 0;
  }
}

.verify-next__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.verify-next__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.verify-next__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .verify-next__title {
    font-size: 2rem;
  }
}

.verify-next__text {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.verify-next__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.recovery-hero {
  background-color: #112749;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .recovery-hero {
    padding: 5rem 0;
  }
}

.recovery-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recovery-hero__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .recovery-hero__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .recovery-hero__title {
    font-size: 3rem;
  }
}

.recovery-hero__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .recovery-hero__text {
    font-size: 1.125rem;
  }
}

.recovery-form {
  background-color: #173462;
  padding: 3rem 0 4rem;
  text-align: center;
}

.recovery-form__container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recovery-form__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem;
}
@media (min-width: 768px) {
  .recovery-form__title {
    font-size: 2rem;
  }
}

.recovery-form__subtitle {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .recovery-form__subtitle {
    font-size: 2rem;
  }
}

.recovery-form__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
}

.recovery-form__form {
  margin-bottom: 1rem;
}

.recovery-form__input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .recovery-form__input-group {
    flex-direction: row;
  }
}

.recovery-form__input {
  flex: 1;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: #111827;
  background-color: white;
  border: none;
  border-radius: 0;
}
.recovery-form__input::-moz-placeholder {
  color: #6C757D;
}
.recovery-form__input::placeholder {
  color: #6C757D;
}
.recovery-form__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.recovery-form__btn {
  white-space: nowrap;
}

.recovery-form__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.recovery-methods {
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .recovery-methods {
    padding: 5rem 0;
  }
}

.recovery-methods__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recovery-methods__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.recovery-methods__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .recovery-methods__title {
    font-size: 2rem;
  }
}

.recovery-methods__text {
  font-size: 1rem;
  color: #6C757D;
  margin: 0 0 2.5rem;
}

.recovery-methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .recovery-methods__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recovery-card {
  text-align: left;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.recovery-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: #111827;
}
.recovery-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.recovery-card__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem;
}

.recovery-card__text {
  font-size: 0.875rem;
  color: #6C757D;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.recovery-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
}
.recovery-card__link:hover {
  text-decoration: underline;
}
.recovery-card__link svg {
  width: 1rem;
  height: 1rem;
}

.recovery-faq {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .recovery-faq {
    padding: 5rem 0;
  }
}

.recovery-faq__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recovery-faq__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .recovery-faq__title {
    font-size: 2rem;
  }
}

.recovery-faq__subtitle {
  font-size: 1rem;
  color: #6C757D;
  margin: 0 0 2rem;
  text-align: center;
}

.recovery-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recovery-faq__item {
  border: 1px solid #e5e7eb;
  border-bottom: none;
}
.recovery-faq__item:last-child {
  border-bottom: 1px solid #e5e7eb;
}
.recovery-faq__item[open] .recovery-faq__icon {
  transform: rotate(0);
}

.recovery-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
}
.recovery-faq__question::-webkit-details-marker {
  display: none;
}
.recovery-faq__question:hover {
  background-color: #F5F5F5;
}

.recovery-faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #6C757D;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.recovery-faq__answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: #6C757D;
  line-height: 1.6;
  margin: 0;
}

.recovery-cta {
  padding: 3rem 0 5rem;
  text-align: center;
}

.recovery-cta__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.recovery-cta__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}

.recovery-cta__text {
  font-size: 1rem;
  color: #6C757D;
  margin: 0 0 1.5rem;
}

.register-hero {
  background-color: #112749;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .register-hero {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .register-hero {
    padding: 6rem 0;
  }
}

.register-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.register-hero__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .register-hero__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .register-hero__title {
    font-size: 3rem;
  }
}

.register-hero__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .register-hero__text {
    font-size: 1.125rem;
  }
}

.register-form {
  background-color: #173462;
  padding: 3rem 0 4rem;
}

.register-form__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.register-form__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem;
}
@media (min-width: 768px) {
  .register-form__title {
    font-size: 2rem;
  }
}

.register-form__subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem;
}

.register-form__form {
  text-align: left;
}

.register-form__field {
  margin-bottom: 1rem;
}

.register-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.register-form__input,
.register-form__select {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: #111827;
  background-color: white;
  border: none;
  border-radius: 0;
}
.register-form__input::-moz-placeholder, .register-form__select::-moz-placeholder {
  color: #6C757D;
}
.register-form__input::placeholder,
.register-form__select::placeholder {
  color: #6C757D;
}
.register-form__input:focus,
.register-form__select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.register-form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25em 1.25em;
  padding-right: 2.5rem;
}

.register-form__error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

.register-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .register-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.register-form__conditional {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.register-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.5rem 0;
  cursor: pointer;
}
.register-form__checkbox input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  cursor: pointer;
}
.register-form__checkbox span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.register-form__checkbox span a {
  color: white;
  text-decoration: underline;
}
.register-form__checkbox span a:hover {
  text-decoration: none;
}

.register-form__submit {
  width: 100%;
  margin-bottom: 1rem;
}

.register-form__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-align: center;
}

.register-terms {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .register-terms {
    padding: 5rem 0;
  }
}

.register-terms__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.register-terms__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .register-terms__title {
    font-size: 2rem;
  }
}

.register-terms__content {
  font-size: 0.9375rem;
  color: #6C757D;
  line-height: 1.7;
}
.register-terms__content p {
  margin: 0 0 1rem;
}
.register-terms__content p:last-child {
  margin-bottom: 0;
}

.register-welcome {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
@media (min-width: 768px) {
  .register-welcome {
    padding: 5rem 0;
  }
}

.register-welcome__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.register-welcome__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .register-welcome__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.register-welcome__content {
  text-align: center;
}
@media (min-width: 768px) {
  .register-welcome__content {
    text-align: left;
  }
}

.register-welcome__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .register-welcome__title {
    font-size: 2rem;
  }
}

.register-welcome__text {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.register-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .register-welcome__actions {
    justify-content: flex-start;
  }
}

.register-welcome__image img {
  width: 100%;
  height: auto;
  display: block;
  background-color: rgb(232.25, 232.25, 232.25);
}

.register-login {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .register-login {
    padding: 5rem 0;
  }
}

.register-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.register-login__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .register-login__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.register-login__content {
  text-align: center;
  order: 2;
}
@media (min-width: 768px) {
  .register-login__content {
    text-align: left;
    order: 1;
  }
}

.register-login__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .register-login__title {
    font-size: 2rem;
  }
}

.register-login__text {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.register-login__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .register-login__actions {
    justify-content: flex-start;
  }
}

.register-login__image {
  order: 1;
}
@media (min-width: 768px) {
  .register-login__image {
    order: 2;
  }
}
.register-login__image img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #F5F5F5;
}

.register-support {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
@media (min-width: 768px) {
  .register-support {
    padding: 5rem 0;
  }
}

.register-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.register-support__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.register-support__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .register-support__title {
    font-size: 2rem;
  }
}

.register-support__subtitle {
  font-size: 1rem;
  color: #6C757D;
  margin: 0 0 2.5rem;
}

.register-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .register-support__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.register-support__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.register-support__method h3 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0.5rem 0 0.25rem;
}
.register-support__method p {
  font-size: 0.875rem;
  color: #6C757D;
  margin: 0 0 0.5rem;
}
.register-support__method a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
}
.register-support__method a:hover {
  text-decoration: underline;
}

.register-support__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #111827;
}

.register-support__image img {
  width: 100%;
  height: auto;
  display: block;
  background-color: rgb(232.25, 232.25, 232.25);
}

.profile-hero {
  background-color: #112749;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .profile-hero {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .profile-hero {
    padding: 6rem 0;
  }
}

.profile-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.profile-hero__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .profile-hero__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .profile-hero__title {
    font-size: 3rem;
  }
}

.profile-hero__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .profile-hero__text {
    font-size: 1.125rem;
  }
}

.profile-content {
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .profile-content {
    padding: 4rem 0 5rem;
  }
}

.profile-content__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.profile-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .profile-content__grid {
    grid-template-columns: 200px 1fr;
    gap: 3rem;
  }
}

.profile-nav .manage-nav {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .profile-nav .manage-nav__list {
    flex-direction: column;
  }
}

.profile-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.profile-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.profile-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
}
.profile-card__title svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2C3E50;
}

.profile-card__subtitle {
  font-size: 0.875rem;
  color: #6C757D;
  margin: 0;
}

.profile-card__body {
  padding: 1.5rem;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.profile-form__field {
  display: flex;
  flex-direction: column;
}

.profile-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .profile-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.profile-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
}
.profile-form__label--required::after {
  content: " *";
  color: #ef4444;
}

.profile-form__input {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: #111827;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  transition: all 0.2s ease;
}
.profile-form__input::-moz-placeholder {
  color: #6C757D;
}
.profile-form__input::placeholder {
  color: #6C757D;
}
.profile-form__input:focus {
  outline: none;
  border-color: #2C3E50;
  box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}
.profile-form__input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background-color: #F5F5F5;
}

.profile-form__hint {
  font-size: 0.75rem;
  color: #6C757D;
  margin: 0.25rem 0 0;
}

.profile-form__error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

.profile-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
}
.profile-form__alert svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}
.profile-form__alert strong {
  display: block;
  margin-bottom: 0.25rem;
}
.profile-form__alert--error {
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  color: #b91c1c;
}

.profile-form__submit {
  width: 100%;
}
@media (min-width: 576px) {
  .profile-form__submit {
    width: auto;
    align-self: flex-start;
  }
}

.profile-help {
  padding: 3rem 0;
  background-color: #F5F5F5;
  text-align: center;
}
@media (min-width: 768px) {
  .profile-help {
    padding: 4rem 0;
  }
}

.profile-help__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.profile-help__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}

.profile-help__text {
  font-size: 1rem;
  color: #6C757D;
  margin: 0 0 1.5rem;
}

.lf {
  background: white;
  color: #111827;
  min-height: 100vh;
}

.lf-field {
  display: grid;
  width: 100%;
  margin-bottom: 1rem;
}
.lf-field .lf-field__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
}
.lf-field .lf-field__label em {
  font-style: normal;
  color: #ef4444;
  margin-left: 0.125rem;
}
.lf-field input {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lf-field input::-moz-placeholder {
  color: #6c757d;
}
.lf-field input::placeholder {
  color: #6c757d;
}
.lf-field input:focus {
  outline: 0;
  border-color: #112749;
  box-shadow: 0 0 0 2px rgba(17, 39, 73, 0.15);
}
.lf-field .lf-field__err {
  font-size: 0.8125rem;
  color: #ef4444;
  margin-top: 0.25rem;
}
.lf-field .lf-field__hint {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.25rem;
}
.lf-field.is-dark .lf-field__label {
  color: rgba(255, 255, 255, 0.9);
}
.lf-field.is-dark .lf-field__err {
  color: #fca5a5;
}
.lf-field.is-dark input {
  color: #111827;
  background: white;
  border-color: transparent;
}
.lf-field.is-dark input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.lf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: #112749;
  border: 1px solid #112749;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.lf-submit:hover {
  background: rgb(11.22, 25.74, 48.18);
}
.lf-submit:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(17, 39, 73, 0.3);
}
.lf-submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.lfB__submit-light {
  background: white !important;
  border-color: white !important;
  color: #112749 !important;
}
.lfB__submit-light:hover {
  background: #f8f6f1 !important;
  border-color: #f8f6f1 !important;
}

.lf-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  font-size: 0.8125rem;
  color: #6c757d;
}
.lf-divider::before, .lf-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.lf-divider.is-light {
  color: rgba(255, 255, 255, 0.55);
}
.lf-divider.is-light::before, .lf-divider.is-light::after {
  background: rgba(255, 255, 255, 0.18);
}

.lf-social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.lf-social button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  background: white;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.lf-social button:hover {
  background: #f5f5f5;
}
.lf-social.is-dark button {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}
.lf-social.is-dark button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lf-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
  cursor: pointer;
}
.lf-check input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #112749;
}
.lf-check.is-light {
  color: rgba(255, 255, 255, 0.85);
}

.lf__alert {
  padding: 0.875rem 1rem;
  border: 1px solid #ef4444;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.lf__alert--dark {
  background: rgba(255, 82, 82, 0.12);
  border-color: rgba(255, 138, 138, 0.4);
  color: #fecaca;
}

.lfA {
  background: #f8f6f1;
}
.lfA .lfA__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}
.lfA .lfA__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #6c757d;
  text-decoration: none;
  font-size: 0.875rem;
}
.lfA .lfA__back:hover {
  color: #111827;
}
.lfA .lfA__brand {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: #112749;
}
.lfA .lfA__signin {
  font-size: 0.875rem;
  color: #6c757d;
}
.lfA .lfA__signin a {
  color: #112749;
  font-weight: 500;
  text-decoration: underline;
}
.lfA .lfA__card {
  max-width: 1024px;
  margin: 1.5rem auto 4rem;
  background: white;
  border: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .lfA .lfA__card {
    grid-template-columns: 1.05fr 1fr;
  }
}
.lfA .lfA__aside {
  background: #112749 linear-gradient(180deg, rgba(17, 39, 73, 0.45), rgba(17, 39, 73, 0.9));
  color: white;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 480px;
}
.lfA .lfA__eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.75rem;
}
.lfA .lfA__h1 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 1rem;
}
.lfA .lfA__lead {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
}
.lfA .lfA__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.lfA .lfA__bullets li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}
.lfA .lfA__qr {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.lfA .lfA__qr-tile {
  width: 56px;
  height: 56px;
  background: repeating-conic-gradient(white 0 25%, transparent 0 50%) 0 0/16px 16px;
  flex-shrink: 0;
}
.lfA .lfA__qr-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.lfA .lfA__qr-text strong {
  display: block;
  color: white;
}
.lfA .lfA__form {
  padding: 2.5rem 2rem;
}
@media (min-width: 768px) {
  .lfA .lfA__form {
    padding: 3rem 2.5rem;
  }
}
.lfA .lfA__formhead {
  margin-bottom: 1.5rem;
}
.lfA .lfA__formhead h2 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  color: #111827;
}
.lfA .lfA__formhead p {
  margin: 0;
  font-size: 0.9375rem;
  color: #6c757d;
}
.lfA .lfA__optionsrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.25rem 0 1rem;
}
.lfA .lfA__optionsrow a {
  font-size: 0.8125rem;
  color: #112749;
  text-decoration: underline;
}
.lfA .lfA__signup {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #6c757d;
}
.lfA .lfA__signup a {
  color: #112749;
  font-weight: 500;
  text-decoration: underline;
}

.lfB {
  background: #112749;
  color: white;
}
.lfB .lfB__main {
  max-width: 480px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.lfB .lfB__intro {
  text-align: center;
  margin-bottom: 2rem;
}
.lfB .lfB__intro .lfB__eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.5rem;
}
.lfB .lfB__intro h1 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.lfB .lfB__intro p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9375rem;
}
.lfB .lfB__card {
  background: #173462;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lfB .lfB__optionsrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}
.lfB .lfB__optionsrow a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}
.lfB .lfB__signup {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.lfB .lfB__signup a {
  color: white;
  font-weight: 500;
  text-decoration: underline;
}

.lfC {
  background: #f8f6f1;
}
.lfC .lfC__main {
  max-width: 440px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.lfC .lfC__card {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 2.5rem 2rem;
  text-align: left;
}
.lfC .lfC__crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(17, 39, 73, 0.08);
  color: #112749;
  margin: 0 auto 1.25rem;
}
.lfC .lfC__title {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  text-align: center;
}
.lfC .lfC__sub {
  font-size: 0.875rem;
  color: #6c757d;
  text-align: center;
  margin: 0 0 1.5rem;
}
.lfC .lfC__optionsrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}
.lfC .lfC__optionsrow a {
  font-size: 0.8125rem;
  color: #112749;
  text-decoration: underline;
}
.lfC .lfC__signup {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #6c757d;
}
.lfC .lfC__signup a {
  color: #112749;
  font-weight: 500;
  text-decoration: underline;
}

.lfD {
  background: #112749;
  color: white;
}
.lfD .lfD__main {
  max-width: 520px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.lfD .lfD__shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lfD .lfD__intro {
  text-align: center;
}
.lfD .lfD__intro h1 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}
.lfD .lfD__intro p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9375rem;
}
.lfD .lfD__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}
.lfD .lfD__tabs.auth-switcher {
  margin: 0 auto;
}
.lfD .lfD__card {
  background: #173462;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lfD .lfD__optionsrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}
.lfD .lfD__optionsrow a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.lfE {
  background: #f8f6f1;
}
.lfE .lfE__main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .lfE .lfE__main {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}
.lfE .lfE__preview {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.lfE .lfE__draftbadge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #6c757d;
}
.lfE .lfE__memcard {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  background: #f8f6f1;
}
.lfE .lfE__portrait {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(17, 39, 73, 0.08);
  color: #112749;
}
.lfE .lfE__memname {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  margin: 0 0 0.125rem;
}
.lfE .lfE__memdates {
  font-size: 0.8125rem;
  color: #6c757d;
  margin: 0;
}
.lfE .lfE__hint {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #111827;
  background: rgba(17, 39, 73, 0.04);
  border: 1px solid rgba(17, 39, 73, 0.08);
  padding: 0.875rem;
}
.lfE .lfE__hint p {
  margin: 0;
}
.lfE .lfE__hint strong {
  display: block;
  margin-bottom: 0.125rem;
}
.lfE .lfE__formwrap {
  padding: 0;
}
.lfE .lfE__intro {
  margin-bottom: 1.5rem;
}
.lfE .lfE__intro h2 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}
.lfE .lfE__intro p {
  color: #6c757d;
  margin: 0;
  font-size: 0.9375rem;
}
.lfE .lfE__optionsrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}
.lfE .lfE__optionsrow a {
  font-size: 0.8125rem;
  color: #112749;
  text-decoration: underline;
}
.lfE .lfE__altcta {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #6c757d;
}
.lfE .lfE__altcta a {
  color: #112749;
  font-weight: 500;
  text-decoration: underline;
}

.kfV2 .kfV2__eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.5rem;
}
.kfV2 .kfV2__type {
  border: 0;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
}
.kfV2 .kfV2__type-lbl {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}
.kfV2 .kfV2__seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.kfV2 .kfV2__seg-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.kfV2 .kfV2__seg-card input[type=radio] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.kfV2 .kfV2__seg-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.kfV2 .kfV2__seg-card:has(input:focus-visible) {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.kfV2 .kfV2__seg-card:has(input:checked) {
  background: white;
  color: #112749;
  border-color: white;
}
.kfV2 .kfV2__seg-card .kfV2__seg-ico {
  display: inline-flex;
  align-items: center;
}
.kfV2 .kfV2__seg-card .kfV2__seg-label {
  font-weight: 500;
}

.kfV3 .kfV3__social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .kfV3 .kfV3__social {
    grid-template-columns: 1fr 1fr;
  }
}
.kfV3 .kfV3__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.kfV3 .kfV3__social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}
.kfV3 .kfV3__social-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.kfV3 .kfV3__social-btn svg {
  flex-shrink: 0;
}
.kfV3 .kfV3__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
}
.kfV3 .kfV3__divider::before, .kfV3 .kfV3__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.kfV3 .kfV3__type .kfV2__seg-card {
  padding: 0.5rem 0.75rem;
}
.kfV3 .kfV3__signin-link {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
}
.kfV3 .kfV3__signin-link a {
  color: white;
  text-decoration: underline;
}
.kfV3 .kfV3__signin-link a:hover {
  text-decoration: none;
}

.kfV4 .kfV4__steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.kfV4 .kfV4__steps .kfV4__step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}
.kfV4 .kfV4__steps .kfV4__step.is-on {
  color: white;
}
.kfV4 .kfV4__steps .kfV4__step.is-on .kfV4__num {
  background: white;
  color: #112749;
  border-color: white;
}
.kfV4 .kfV4__steps .kfV4__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}
.kfV4 .kfV4__steps .kfV4__line {
  flex: 0 0 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.kfV4 .kfV4__panel {
  margin-bottom: 1rem;
}
.kfV4 .kfV4__choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .kfV4 .kfV4__choices {
    grid-template-columns: 1fr 1fr;
  }
}
.kfV4 .kfV4__choice {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
  row-gap: 0.25rem;
  align-items: start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.kfV4 .kfV4__choice input[type=radio] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.kfV4 .kfV4__choice:hover {
  background: rgba(255, 255, 255, 0.1);
}
.kfV4 .kfV4__choice:has(input:focus-visible) {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.kfV4 .kfV4__choice:has(input:checked) {
  background: white;
  border-color: white;
  color: #112749;
}
.kfV4 .kfV4__choice:has(input:checked) em {
  color: rgba(17, 39, 73, 0.7);
}
.kfV4 .kfV4__choice:has(input:checked) .kfV4__choice-ico {
  color: #112749;
}
.kfV4 .kfV4__choice .kfV4__choice-ico {
  grid-row: 1/span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}
.kfV4 .kfV4__choice strong {
  font-size: 0.9375rem;
  font-weight: 600;
}
.kfV4 .kfV4__choice em {
  font-style: normal;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.kfV4 .kfV4__nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}
.kfV4 .kfV4__back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.kfV4 .kfV4__back:hover {
  background: rgba(255, 255, 255, 0.08);
}
.kfV4 .kfV4__next, .kfV4 .kfV4__submit {
  margin-left: auto;
}

.kfV5 .register-form__container {
  max-width: 28rem;
  padding: 0 1.25rem;
}
.kfV5 .register-form__title {
  font-size: 1.5rem;
}
.kfV5 .register-form__subtitle {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.kfV5 .register-form__row {
  grid-template-columns: 1fr;
}
.kfV5 .kfV5__type .kfV2__seg-card {
  font-size: 0.875rem;
  padding: 0.5rem 0.625rem;
}

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

.login-split {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F9FAFB;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #03070C;
  padding: 1rem 1rem 1.5rem;
}
@media (min-width: 768px) {
  .login-split {
    padding: 1rem 1.5rem 1.75rem;
  }
}
.login-split *,
.login-split *::before,
.login-split *::after {
  box-sizing: border-box;
}
.login-split .auth-switcher {
  max-width: 64rem;
  margin: 0 auto 1rem;
}
.login-split .auth-switcher__intro {
  font-size: 0.875rem;
  color: #4B5563;
  margin: 0 0 1.25rem;
}
.login-split .auth-switcher {
  background: #F3F4F6;
  border-color: #E1E2E2;
}
.login-split .auth-switcher__tab {
  color: #4B5563;
}
.login-split .auth-switcher__tab:hover {
  color: #1A252F;
}
.login-split .auth-switcher__tab:focus-visible {
  outline-color: rgba(44, 62, 80, 0.4);
}
.login-split .auth-switcher__tab[aria-selected=true], .login-split .auth-switcher__tab.is-active {
  background: #1A252F;
  color: #FFFFFF;
  box-shadow: 0 1px 2px rgba(44, 62, 80, 0.18);
}
.login-split .auth-switcher__intro {
  color: #4B5563;
}
.login-split__card {
  display: grid;
  grid-template-columns: 1fr;
  background: #FFFFFF;
  border: 1px solid #E1E2E2;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.12);
  overflow: hidden;
  max-width: 64rem;
  margin: 0 auto;
  border-radius: 0;
}
@media (min-width: 768px) {
  .login-split__card {
    grid-template-columns: 1fr 1fr;
    min-height: 36rem;
  }
}
.login-split__aside {
  position: relative;
  padding: 2rem 1.5rem;
  color: #FFFFFF;
  background-color: #1A252F;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 0;
  order: 2;
}
@media (min-width: 768px) {
  .login-split__aside {
    order: 0;
    padding: 2.25rem 2rem;
  }
}
.login-split__aside-top {
  display: flex;
  flex-direction: column;
}
.login-split__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .login-split__eyebrow {
    margin-bottom: 1.25rem;
  }
}
.login-split__h1 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.625rem;
  line-height: 1.15;
  margin: 0 0 0.875rem;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .login-split__h1 {
    font-size: 2rem;
  }
}
.login-split__lead {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem;
  max-width: 32ch;
  font-size: 0.9375rem;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .login-split__lead {
    margin-bottom: 1.5rem;
  }
}
.login-split__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}
.login-split__bullets li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.login-split__bullets svg {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.85);
}
.login-split__qr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
@media (min-width: 768px) {
  .login-split__qr {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}
.login-split__qr-tile {
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  background: #FFFFFF;
  color: #1A252F;
  display: grid;
  place-items: center;
  padding: 0.375rem;
}
.login-split__qr-tile img {
  width: 100%;
  height: 100%;
  display: block;
}
.login-split__qr-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.login-split__qr-text b {
  display: block;
  color: #FFFFFF;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
  font-weight: 600;
}
.login-split__form-panel {
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  background: #FFFFFF;
  order: 1;
}
@media (min-width: 768px) {
  .login-split__form-panel {
    order: 0;
    padding: 3.5rem 2.25rem 2.25rem;
  }
}
.login-split__formhead h2 {
  font-family: "Gilda Display", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.625rem;
  line-height: 1.2;
  margin: 0 0 0.375rem;
  color: #1A252F;
}
@media (min-width: 768px) {
  .login-split__formhead h2 {
    font-size: 1.75rem;
  }
}
.login-split__formhead p {
  color: #4B5563;
  margin: 0;
  font-size: 0.9375rem;
}
.login-split__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.login-split__alert {
  display: flex;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-size: 0.875rem;
  line-height: 1.4;
}
.login-split__alert ul {
  margin: 0;
  padding: 0 0 0 1rem;
}
.login-split__alert--info {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}
.login-split__alert--info strong {
  display: block;
  margin-bottom: 0.125rem;
}
.login-split__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
}
.login-split__label {
  font-weight: 500;
  color: #03070C;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.login-split__label em {
  color: #ef4444;
  font-style: normal;
}
.login-split__input {
  width: 100%;
  min-height: 2.875rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  color: #03070C;
  transition: all 0.15s ease;
}
.login-split__input:focus {
  outline: none;
  border-color: #2C3E50;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.12);
  background: #FFFFFF;
}
.login-split__input::-moz-placeholder {
  color: #9CA3AF;
}
.login-split__input::placeholder {
  color: #9CA3AF;
}
.login-split__error {
  font-size: 0.75rem;
  color: #ef4444;
}
.login-split__error:empty {
  display: none;
}
.login-split__pwd {
  position: relative;
}
.login-split__pwd input {
  padding-right: 2.75rem;
}
.login-split__pwd-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  padding: 0.5rem;
  color: #6B7280;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.login-split__pwd-toggle:hover {
  color: #2C3E50;
}
.login-split__pwd-toggle:focus-visible {
  outline: 2px solid rgba(44, 62, 80, 0.45);
  outline-offset: 2px;
}
.login-split__pwd-toggle svg {
  display: block;
}
.login-split__pwd-icon-hide {
  display: none;
}
.login-split__optionsrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.login-split__check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #03070C;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.login-split__check input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #2C3E50;
  border-radius: 0;
  margin: 0;
}
.login-split__link {
  font-size: 0.875rem;
  color: #2C3E50;
  text-decoration: underline;
}
.login-split__link:hover {
  color: #1A252F;
}
.login-split__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.875rem 1.5rem;
  background: #1A252F;
  color: #FFFFFF;
  border: 1px solid #1A252F;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 2px rgba(15, 22, 36, 0.18);
}
.login-split__submit:hover {
  background: #2C3E50;
  border-color: #2C3E50;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 10px rgba(15, 22, 36, 0.2);
}
.login-split__submit:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.login-split__submit:active {
  background: #1A252F;
  transform: translateY(0.5px);
}
.login-split__submit svg {
  opacity: 0.85;
  flex: 0 0 auto;
}
.login-split__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6B7280;
  font-size: 0.8125rem;
  margin: 0.25rem 0;
}
.login-split__divider::before, .login-split__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}
.login-split__social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0;
}
@media (min-width: 576px) {
  .login-split__social {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.login-split__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  background: #FFFFFF;
  color: #03070C;
  border: 1px solid #E5E7EB;
  border-radius: 0;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.login-split__social-btn:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}
.login-split__social-btn:focus-visible {
  outline: 2px solid rgba(44, 62, 80, 0.45);
  outline-offset: 2px;
}
.login-split__social-btn svg {
  flex: 0 0 auto;
}
.login-split__signup {
  text-align: center;
  font-size: 0.875rem;
  color: #4B5563;
  margin: 0.25rem 0 0;
}
.login-split__signup a {
  color: #2C3E50;
  font-weight: 500;
  text-decoration: underline;
}
.login-split__signup a:hover {
  color: #1A252F;
}
.login-split__trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6B7280;
  margin: 0.25rem 0 0;
  text-align: center;
}
.login-split__trust svg {
  flex: 0 0 auto;
}

.auth-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin: 0 auto 1.5rem;
  max-width: 22rem;
}

.auth-switcher__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: none;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}
.auth-switcher__tab:hover {
  color: white;
}
.auth-switcher__tab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.auth-switcher__tab[aria-selected=true], .auth-switcher__tab.is-active {
  background: white;
  color: #2C3E50;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  cursor: default;
}

.auth-switcher__intro {
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.auth-switcher__reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "DM Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 0.75rem 0 0;
}
.auth-switcher__reassurance svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.register-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.5rem 0 1.5rem;
}
.register-form__checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}
.register-form__checkbox-inline input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  cursor: pointer;
}
.register-form__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 2px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
.register-form__link:hover, .register-form__link:focus-visible {
  color: white;
  text-decoration-color: white;
}
.register-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #b91c1c;
}
.register-form__alert ul {
  margin: 0;
  padding-left: 1.25rem;
}
.register-form__alert li:only-child {
  list-style: none;
  margin-left: -1.25rem;
}
.register-form__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}
.register-form__divider::before, .register-form__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.18);
}
.register-form__divider span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.register-form__social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
/*# sourceMappingURL=maps/identity.css.map */
