.access-page {
  /*min-height: 100vh;*/
  /*padding: 34px 20px 56px;*/
}

.access-page--center {
  display: flex;
  align-items: center;
}

.access-wrap,
.access-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.access-head {
  margin-bottom: 22px;
}

.access-title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  font-weight: 800;
}

.access-subtitle {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}

.access-form {
  width: 100%;
}

.access-field {
  margin-bottom: 18px;
}

.access-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}

.access-form .wc-inputs,
.access-form .wc-input,
.access-form input[type="email"],
.access-form input[type="password"],
.access-form input[type="text"] {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.09));
  color: #fff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.access-form .wc-inputs::placeholder,
.access-form .wc-input::placeholder,
.access-form input::placeholder {
  color: rgba(255,255,255,0.38);
}

.access-form .wc-inputs:focus,
.access-form .wc-input:focus,
.access-form input:focus {
  border-color: #00eaff;
  box-shadow:
    0 0 0 1px rgba(0, 234, 255, 0.25),
    0 0 16px rgba(0, 234, 255, 0.18);
}

.access-form .is-error {
  border-color: #ff6b6b !important;
  box-shadow:
    0 0 0 1px rgba(255, 107, 107, 0.22),
    0 0 16px rgba(255, 107, 107, 0.14) !important;
}

.access-field-error {
  margin-top: 7px;
  font-size: 0.92rem;
  line-height: 1.2;
  color: #ff6b6b;
}

.access-field-error:empty {
  display: none;
}

.access-form-error {
  min-height: 20px;
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: #ff8686;
}

.access-field-help {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
}

.access-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.access-actions--stack {
  flex-direction: column;
  align-items: stretch;
}

.access-submit,
.access-actions .btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.access-actions--stack .access-submit,
.access-actions--stack .btn {
  width: 100%;
  justify-content: center;
}

.access-submit[disabled],
.access-actions .btn[disabled] {
  opacity: 0.7;
  cursor: default;
}

.access-switch {
  margin-top: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
}

.access-switch a {
  color: #fff;
  text-decoration: none;
}

.access-switch a:hover {
  text-decoration: underline;
}

.access-inline-note {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}

.access-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.access-status--success {
  color: #9ff7cf;
  border-color: rgba(159,247,207,0.18);
  background: rgba(159,247,207,0.07);
}

.access-status--warning {
  color: #ffd98f;
  border-color: rgba(255,217,143,0.16);
  background: rgba(255,217,143,0.07);
}

.access-status--neutral {
  color: rgba(255,255,255,0.86);
}

.unit-toggle {
  display: inline-flex;
  gap: 10px;
  margin-top: 4px;
}

.unit-btn {
  min-width: 78px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.unit-btn.is-active {
  border-color: #00eaff;
  box-shadow:
    0 0 0 1px rgba(0, 234, 255, 0.22),
    0 0 16px rgba(0, 234, 255, 0.16);
  background: rgba(0, 234, 255, 0.08);
  color: #fff;
}

.verify-result-actions {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .access-page {
    padding: 18px 16px 38px;
  }

  .access-wrap,
  .access-card {
    max-width: 100%;
  }

  .access-title {
    font-size: 2.35rem;
  }

  .access-subtitle {
    font-size: 0.98rem;
  }

  .access-form .wc-inputs,
  .access-form .wc-input,
  .access-form input[type="email"],
  .access-form input[type="password"],
  .access-form input[type="text"] {
    min-height: 50px;
    border-radius: 13px;
    padding: 0 14px;
  }

  .access-submit,
  .access-actions .btn {
    min-height: 46px;
    padding: 0 16px;
  }

  .access-actions {
    gap: 10px;
  }

  .unit-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .unit-btn {
    width: 100%;
  }
}

.access-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.access-google-btn:hover {
  background: #f7f7f7;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.access-google-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .access-head {
    margin-bottom: 18px;
  }

  .access-field {
    margin-bottom: 14px;
  }

  .access-field label {
    margin-bottom: 6px;
  }

  .access-switch {
    margin-top: 10px;
  }
}

.access-actions--stack {
  flex-direction: column;
  align-items: stretch;
}

.access-actions--stack .access-submit,
.access-actions--stack .btn,
.access-actions--stack .access-google-btn {
  width: 100%;
  justify-content: center;
}

.access-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.access-google-btn:hover {
  background: #f7f7f7;
}

.access-inline-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  margin: 0 auto 16px;
}

@media (max-width: 700px) {
  .access-actions {
    gap: 10px;
  }

  .access-field {
    margin-bottom: 14px;
  }

  .access-google-btn {
    width: 100%;
  }
}

.access-forgot {
  margin: -2px 0 10px;
  font-size: 0.98rem;
}

.access-forgot a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.access-forgot a:hover {
  text-decoration: underline;
}

.access-actions--stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.access-actions--stack .access-submit,
.access-actions--stack .btn,
.access-actions--stack .access-google-btn {
  width: 100%;
  justify-content: center;
}

.access-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.access-google-btn:hover {
  background: #f7f7f7;
}

.access-google-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .access-forgot {
    margin: -2px 0 8px;
  }

  .access-actions--stack {
    gap: 10px;
  }
}

.access-wrap,
.access-card {
  max-width: 520px;
}

.access-forgot {
  margin: 4px 0 10px;
  font-size: 0.98rem;
}

@media (max-width: 700px) {
  .access-forgot {
    margin: 4px 0 8px;
  }
}

