/* [project]/app/globals.css [app-client] (css) */
:root {
  color: #17191f;
  background: #f4f5f7;
  font-family: Arial, Noto Sans KR, sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html, body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  background: #f4f5f7;
}

a {
  color: inherit;
}

button, input {
  font: inherit;
}

.home-page, .auth-page {
  place-items: center;
  min-height: 100vh;
  padding: 32px 20px;
  display: grid;
}

.home-card, .auth-card, .status-card {
  background: #fff;
  border: 1px solid #dfe2e8;
  border-radius: 20px;
  width: min(100%, 560px);
  padding: 40px;
  box-shadow: 0 18px 60px #0f131c14;
}

.home-card {
  width: min(100%, 720px);
}

.home-card h1, .auth-heading h1, .status-card h1, .account-card h1 {
  letter-spacing: -.035em;
  margin: 8px 0 12px;
}

.home-card h1 {
  max-width: 620px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.04;
}

.auth-heading h1, .status-card h1, .account-card h1 {
  font-size: 34px;
  line-height: 1.15;
}

.home-copy, .auth-heading p:last-child, .status-card > p, .account-email {
  color: #686e7a;
}

.eyebrow {
  letter-spacing: .14em;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.brand-link {
  letter-spacing: .1em;
  margin-bottom: 34px;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
}

.auth-heading {
  margin-bottom: 28px;
}

.auth-heading p:last-child {
  margin: 0;
}

.auth-form {
  gap: 18px;
  display: grid;
}

.form-field {
  gap: 8px;
  display: grid;
}

.form-field label {
  font-size: 14px;
  font-weight: 800;
}

.form-field input {
  background: #fff;
  border: 1px solid #cfd4dc;
  border-radius: 12px;
  outline: none;
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
}

.form-field input:focus {
  border-color: #17191f;
  box-shadow: 0 0 0 3px #17191f14;
}

.field-help {
  color: #737a86;
  margin: 0;
  font-size: 13px;
}

.form-error {
  color: #8d2929;
  background: #fff4f4;
  border: 1px solid #efc8c8;
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 14px;
}

.primary-button, .secondary-button {
  cursor: pointer;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
}

.primary-button {
  color: #fff;
  background: #17191f;
  border: 1px solid #17191f;
}

.secondary-button {
  color: #17191f;
  background: #fff;
  border: 1px solid #cfd4dc;
}

.primary-button:disabled, .secondary-button:disabled {
  cursor: default;
  opacity: .55;
}

.link-button {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

.text-link {
  text-underline-offset: 3px;
  font-weight: 700;
}

.home-actions, .status-actions, .account-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.home-actions {
  margin: 28px 0 18px;
}

.status-actions {
  margin-top: 24px;
}

.auth-switch {
  text-align: center;
  color: #686e7a;
  margin: 4px 0 0;
  font-size: 14px;
}

.auth-switch a {
  color: #17191f;
  font-weight: 800;
}

.status-card {
  text-align: center;
}

.status-mark {
  background: #eef0f3;
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  font-weight: 900;
  display: grid;
}

.status-mark.is-error {
  color: #982e2e;
  background: #fff1f1;
}

.status-card .status-actions {
  justify-content: center;
}

.account-shell {
  width: min(100%, 680px);
}

.account-card {
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  display: flex;
}

.account-email {
  margin: 0;
  font-size: 16px;
}

@media (max-width: 640px) {
  .home-card, .auth-card, .status-card {
    padding: 28px 22px;
  }

  .account-card {
    flex-direction: column;
    align-items: stretch;
  }

  .account-actions .secondary-button {
    width: 100%;
  }
}

.form-label-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.field-link {
  color: #4f5663;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.field-link:hover {
  text-decoration: underline;
}

.embedded-status {
  width: 100%;
  box-shadow: none;
  border: 0;
  padding: 0;
}

.service-auth-theme {
  background: var(--service-page-background);
  color: var(--service-text);
  transition: background-color .12s, color .12s;
}

.service-auth-theme .auth-card {
  border-color: var(--service-border);
  background: var(--service-surface);
  color: var(--service-text);
  box-shadow: 0 18px 60px color-mix(in srgb, var(--service-text) 12%, transparent);
}

.service-auth-theme .auth-heading p:last-child, .service-auth-theme .auth-switch, .service-auth-theme .field-help {
  color: var(--service-muted-text);
}

.service-auth-theme .auth-switch a, .service-auth-theme .field-link, .service-auth-theme .brand-link {
  color: var(--service-text);
}

.service-auth-theme .form-field input {
  border-color: var(--service-border);
  background: var(--service-input-background);
  color: var(--service-text);
}

.service-auth-theme .form-field input::placeholder {
  color: color-mix(in srgb, var(--service-muted-text) 78%, transparent);
}

.service-auth-theme .form-field input:focus {
  border-color: var(--service-accent);
  box-shadow: 0 0 0 3px var(--service-focus-ring);
}

.service-auth-theme .primary-button {
  border-color: var(--service-accent);
  background: var(--service-accent);
  color: var(--service-accent-text);
}

.auth-context-loading {
  color: #686e7a;
  text-align: center;
  border: 1px dashed #cfd4dc;
  border-radius: 12px;
  place-items: center;
  min-height: 116px;
  padding: 20px;
  font-size: 14px;
  display: grid;
}

.service-auth-theme .auth-context-loading {
  border-color: var(--service-border);
  color: var(--service-muted-text);
}

.form-field select {
  color: #17191f;
  width: 100%;
  min-height: 50px;
  font: inherit;
  background: #fff;
  border: 1px solid #cfd4dc;
  border-radius: 12px;
  outline: none;
  padding: 0 15px;
}

.form-field select:focus {
  border-color: #17191f;
  box-shadow: 0 0 0 3px #17191f14;
}

.service-auth-theme .form-field select {
  border-color: var(--service-border);
  background: var(--service-input-background);
  color: var(--service-text);
}

.service-auth-theme .form-field select:focus {
  border-color: var(--service-accent);
  box-shadow: 0 0 0 3px var(--service-focus-ring);
}

.profile-inline-fields {
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
  gap: 12px;
  display: grid;
}

.profile-notice, .profile-success {
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 14px;
}

.profile-notice {
  color: #535a67;
  background: #f7f8fa;
  border: 1px solid #d8dce4;
}

.profile-success {
  color: #28623a;
  background: #f2faf4;
  border: 1px solid #cfe3d4;
}

.service-auth-theme .profile-notice {
  border-color: var(--service-border);
  background: color-mix(in srgb, var(--service-surface) 88%, var(--service-text) 12%);
  color: var(--service-muted-text);
}

.account-stack {
  gap: 28px;
  display: grid;
}

.profile-panel {
  border-top: 1px solid #dfe2e8;
  padding-top: 28px;
}

.profile-panel-heading {
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 22px;
  display: flex;
}

.profile-panel-heading h2 {
  letter-spacing: -.025em;
  margin: 6px 0 0;
  font-size: 25px;
}

.verification-badge {
  color: #686e7a;
  white-space: nowrap;
  background: #f7f8fa;
  border: 1px solid #d8dce4;
  border-radius: 999px;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.verification-badge.is-verified {
  color: #28623a;
  background: #f2faf4;
  border-color: #cfe3d4;
}

@media (max-width: 640px) {
  .profile-inline-fields {
    grid-template-columns: 1fr;
  }

  .profile-panel-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .verification-badge {
    align-self: flex-start;
  }
}

.verification-field-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
  display: grid;
}

.verification-action-button {
  white-space: nowrap;
  min-width: 132px;
}

.verification-code-panel {
  background: #f8f9fb;
  border: 1px solid #dfe2e8;
  border-radius: 12px;
  gap: 8px;
  padding: 14px;
  display: grid;
}

.verification-code-panel label {
  font-size: 13px;
  font-weight: 800;
}

.verification-message {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.verification-message.is-info {
  color: #5e6570;
}

.verification-message.is-success {
  color: #1d6b42;
}

.verification-message.is-error {
  color: #8d2929;
}

.service-auth-theme .verification-code-panel {
  border-color: var(--service-border);
  background: color-mix(in srgb, var(--service-input-background) 88%, var(--service-surface));
}

.service-auth-theme .verification-message.is-info {
  color: var(--service-muted-text);
}

@media (max-width: 640px) {
  .verification-field-row {
    grid-template-columns: 1fr;
  }

  .verification-action-button {
    width: 100%;
  }
}

.auth-page[data-e2e^="customer-register"] {
  padding: 20px 18px;
}

.auth-page[data-e2e^="customer-register"] .auth-card {
  width: min(100%, 780px);
  padding: 30px 32px;
}

.auth-page[data-e2e^="customer-register"] .brand-link {
  margin-bottom: 22px;
}

.auth-page[data-e2e^="customer-register"] .auth-heading {
  margin-bottom: 20px;
}

.auth-page[data-e2e^="customer-register"] .auth-heading h1 {
  font-size: 31px;
}

.registration-form {
  gap: 12px;
}

.registration-section {
  background: linear-gradient(#fff 0%, #fbfcfd 100%);
  border: 1px solid #e2e5ea;
  border-radius: 18px;
  gap: 14px;
  padding: 18px;
  display: grid;
  box-shadow: 0 8px 24px #0f131c09;
}

.registration-section--identity {
  background: linear-gradient(145deg, #fff 0%, #f7f9fc 100%);
  border-color: #d9dde5;
}

.registration-section--verification {
  background: #f8fafc;
}

.registration-section--additional {
  background: #fbfbfc;
}

.registration-section--policies {
  background: linear-gradient(#fbfaf7 0%, #f6f3ec 100%);
  border-color: #d8d3c6;
}

.registration-policy-list {
  gap: 8px;
  display: grid;
}

.registration-policy-row {
  cursor: pointer;
  background: #ffffffb8;
  border: 1px solid #ded9cd;
  border-radius: 14px;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 12px 13px;
  display: grid;
  position: relative;
}

.registration-policy-row input {
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  position: absolute;
}

.registration-policy-check {
  background: #fff;
  border: 1px solid #aaa394;
  border-radius: 6px;
  place-items: center;
  width: 20px;
  height: 20px;
  display: inline-grid;
}

.registration-policy-row input:checked + .registration-policy-check {
  background: #9b8651;
  border-color: #9b8651;
}

.registration-policy-row input:checked + .registration-policy-check:after {
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 8px;
  height: 4px;
  transform: translateY(-1px)rotate(-45deg);
}

.registration-policy-row input:focus-visible + .registration-policy-check {
  outline-offset: 2px;
  outline: 3px solid #9b865138;
}

.registration-policy-copy {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.registration-policy-copy strong {
  color: #2e302f;
  font-size: 13px;
  line-height: 1.35;
}

.registration-policy-copy strong em {
  color: #806c3c;
  letter-spacing: .04em;
  margin-right: 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.registration-policy-copy strong em.is-optional {
  color: #747b87;
}

.registration-policy-copy small {
  color: #76766f;
  font-size: 11px;
  line-height: 1.45;
}

.registration-policy-link {
  z-index: 1;
  color: #6e5c33;
  text-underline-offset: 3px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  position: relative;
}

.service-auth-theme .registration-section--policies, .service-auth-theme .registration-policy-row {
  border-color: var(--service-border);
  background: color-mix(in srgb, var(--service-surface) 94%, var(--service-text) 6%);
}

.service-auth-theme .registration-policy-copy strong {
  color: var(--service-text);
}

.service-auth-theme .registration-policy-copy small {
  color: var(--service-muted-text);
}

.service-auth-theme .registration-policy-check {
  border-color: var(--service-border);
  background: var(--service-input-background);
}

.service-auth-theme .registration-policy-row input:checked + .registration-policy-check {
  border-color: var(--service-accent);
  background: var(--service-accent);
}

.service-auth-theme .registration-policy-link, .service-auth-theme .registration-policy-copy strong em {
  color: var(--service-accent);
}

.registration-section-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.registration-section-heading h2 {
  letter-spacing: -.025em;
  margin: 1px 0 3px;
  font-size: 18px;
  line-height: 1.3;
}

.registration-section-heading p:not(.registration-section-kicker) {
  color: #747b87;
  margin: 0;
  font-size: 13px;
}

.registration-section-kicker {
  color: #535b68;
  letter-spacing: .08em;
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 900;
}

.registration-section-badge, .verification-status-chip {
  color: #626a76;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d7dce4;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
}

.registration-section-badge.is-complete, .verification-status-chip.is-verified {
  color: #226540;
  background: #effaf3;
  border-color: #bfe2cc;
}

.verification-status-chip.is-pending {
  color: #7b5c11;
  background: #fffaf0;
  border-color: #e7d8ad;
}

.verification-status-chip.is-disabled {
  color: #777e89;
  background: #f1f3f6;
  border-color: #dfe2e8;
}

.registration-grid {
  gap: 11px;
  display: grid;
}

.registration-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-additional-grid {
  grid-template-columns: minmax(150px, .8fr) minmax(190px, 1.1fr) minmax(170px, 1fr);
  align-items: start;
  gap: 11px;
  display: grid;
}

.registration-form .form-field {
  gap: 5px;
}

.registration-form .form-field label, .verification-card-heading label {
  color: #343a45;
  font-size: 13px;
  font-weight: 850;
}

.registration-form .form-field input, .registration-form .form-field select, .verification-card input {
  color: #17191f;
  caret-color: #17191f;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: #fff;
  border-color: #d5dae2;
  border-radius: 14px;
  min-height: 48px;
  transition: border-color .12s, box-shadow .12s, background-color .12s;
  box-shadow: inset 0 1px #0f131c05;
}

.registration-form .form-field input::placeholder, .verification-card input::placeholder {
  color: #747b87;
  opacity: 1;
}

.registration-form .form-field select {
  color: #17191f;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

.registration-form .form-field select option {
  color: #17191f;
  background: #fff;
}

.registration-form .form-field input:hover, .registration-form .form-field select:hover, .verification-card input:hover {
  border-color: #bbc2cd;
}

.registration-form .form-field input:focus, .registration-form .form-field select:focus, .verification-card input:focus {
  border-color: #343a45;
  box-shadow: 0 0 0 4px #17191f12;
}

.registration-section--identity .registration-grid--2 {
  align-items: start;
}

.registration-section--identity .form-field--featured {
  align-content: start;
}

.registration-section--identity .form-field--featured > label {
  align-items: flex-end;
  min-height: 34px;
  line-height: 1.3;
  display: flex;
}

.registration-section--identity .form-field--featured > .field-help {
  align-self: start;
}

.form-field--featured input {
  font-size: 16px;
  font-weight: 700;
}

.verification-card {
  background: #fff;
  border: 1px solid #dde2e9;
  border-radius: 16px;
  gap: 10px;
  padding: 13px;
  display: grid;
  box-shadow: 0 4px 16px #0f131c08;
}

.verification-card--disabled {
  box-shadow: none;
  background: #f6f7f9;
}

.verification-card-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  display: flex;
}

.verification-card-heading p {
  color: #747b87;
  margin: 2px 0 0;
  font-size: 12px;
}

.registration-form .verification-action-button {
  border-radius: 14px;
  min-width: 136px;
  min-height: 48px;
}

.verification-code-panel--inline {
  background: #f6f8fb;
  border-style: solid;
  border-color: #d6dce5;
  border-radius: 14px;
  gap: 9px;
  padding: 11px;
}

.verification-code-copy {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  display: flex;
}

.verification-code-copy strong {
  font-size: 13px;
}

.verification-code-copy span {
  color: #747b87;
  font-size: 12px;
}

.registration-submit-panel {
  color: #fff;
  background: #17191f;
  border: 1px solid #d9dde4;
  border-radius: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  display: grid;
  box-shadow: 0 12px 30px #0f131c1f;
}

.registration-submit-copy {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
  display: flex;
}

.registration-submit-copy strong {
  width: 100%;
  font-size: 14px;
}

.registration-submit-copy .is-ready {
  color: #a9e2bb;
  font-weight: 800;
}

.registration-submit-copy .is-required {
  color: #ffd889;
  font-weight: 800;
}

.registration-submit-copy .is-muted {
  color: #aeb4bf;
}

.registration-submit-button {
  color: #17191f;
  background: #fff;
  border-color: #fff;
  min-width: 140px;
}

.service-auth-theme .registration-section, .service-auth-theme .verification-card {
  border-color: var(--service-border);
  background: color-mix(in srgb, var(--service-surface) 96%, var(--service-text) 4%);
  box-shadow: none;
}

.service-auth-theme .registration-section-heading p:not(.registration-section-kicker), .service-auth-theme .registration-section-kicker, .service-auth-theme .verification-card-heading p, .service-auth-theme .verification-code-copy span {
  color: var(--service-muted-text);
}

.service-auth-theme .registration-section-heading h2, .service-auth-theme .registration-form .form-field label, .service-auth-theme .verification-card-heading label {
  color: var(--service-text);
}

.service-auth-theme .registration-form .form-field input, .service-auth-theme .verification-card input {
  color: #17191f;
  -webkit-text-fill-color: #17191f;
  caret-color: #17191f;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: #fff;
}

.service-auth-theme .registration-form .form-field input::placeholder, .service-auth-theme .verification-card input::placeholder {
  color: #747b87;
  -webkit-text-fill-color: #747b87;
  opacity: 1;
}

.service-auth-theme .registration-form .form-field input:-webkit-autofill {
  -webkit-text-fill-color: #17191f;
  caret-color: #17191f;
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

.service-auth-theme .verification-card input:-webkit-autofill {
  -webkit-text-fill-color: #17191f;
  caret-color: #17191f;
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

.service-auth-theme .registration-submit-panel {
  border-color: var(--service-border);
  background: var(--service-text);
  color: var(--service-surface);
}

.service-auth-theme .registration-submit-button {
  border-color: var(--service-accent);
  background: var(--service-accent);
  color: var(--service-accent-text);
}

@media (max-width: 760px) {
  .auth-page[data-e2e^="customer-register"] .auth-card {
    width: min(100%, 620px);
    padding: 26px 22px;
  }

  .registration-grid--2, .registration-additional-grid, .registration-submit-panel {
    grid-template-columns: 1fr;
  }

  .registration-section-heading, .verification-card-heading, .verification-code-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .registration-section-badge, .verification-status-chip {
    align-self: flex-start;
  }

  .registration-submit-button {
    width: 100%;
  }

  .registration-policy-row {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .registration-policy-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .registration-section {
    border-radius: 15px;
    padding: 15px;
  }

  .verification-field-row {
    grid-template-columns: 1fr;
  }

  .registration-form .verification-action-button {
    width: 100%;
  }
}

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

.phone-entry-row {
  grid-template-columns: minmax(132px, .8fr) minmax(220px, 1.2fr) auto;
  align-items: stretch;
  gap: 9px;
  display: grid;
}

.phone-entry-row--completion {
  grid-template-columns: minmax(146px, .8fr) minmax(0, 1.2fr);
}

.phone-entry-row--profile {
  grid-template-columns: minmax(146px, .8fr) minmax(240px, 1.2fr) auto;
}

.phone-country-control, .phone-national-control {
  min-width: 0;
}

.phone-entry-row select, .phone-entry-row input {
  color: #17191f;
  -webkit-text-fill-color: #17191f;
  caret-color: #17191f;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: #fff;
  border: 1px solid #d5dae2;
  border-radius: 14px;
  outline: none;
  width: 100%;
  min-height: 48px;
  transition: border-color .12s, box-shadow .12s, transform .12s;
  box-shadow: inset 0 1px #0f131c05;
}

.phone-entry-row select {
  font: inherit;
  cursor: pointer;
  padding: 0 38px 0 14px;
  font-size: 14px;
  font-weight: 750;
}

.phone-entry-row select option {
  color: #17191f;
  background: #fff;
}

.phone-entry-row input {
  letter-spacing: .015em;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 650;
}

.phone-entry-row input::placeholder {
  color: #8a909b;
  -webkit-text-fill-color: #8a909b;
  opacity: 1;
}

.phone-entry-row select:hover, .phone-entry-row input:hover {
  border-color: #b8c0cb;
}

.phone-entry-row select:focus, .phone-entry-row input:focus {
  border-color: #343a45;
  box-shadow: 0 0 0 4px #17191f12;
}

.phone-entry-row .phone-verification-button {
  border-radius: 14px;
  min-width: 116px;
}

.service-auth-theme .phone-entry-row select, .service-auth-theme .phone-entry-row input {
  color: #17191f;
  -webkit-text-fill-color: #17191f;
  caret-color: #17191f;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: #fff;
  border-color: #d5dae2;
}

.service-auth-theme .phone-entry-row select:focus, .service-auth-theme .phone-entry-row input:focus {
  border-color: var(--service-accent);
  box-shadow: 0 0 0 4px var(--service-focus-ring);
}

@media (max-width: 760px) {
  .phone-entry-row, .phone-entry-row--profile, .phone-entry-row--completion {
    grid-template-columns: 1fr;
  }

  .phone-entry-row .phone-verification-button {
    width: 100%;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/