.orca-auth-page {
  position: relative;
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  background: #fcf8fa;
  padding: 3rem 1.5rem;
}

.orca-auth-panel {
  width: 100%;
  max-width: 34.375rem;
}

.orca-auth-panel--centered {
  text-align: center;
}

.orca-auth-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
  color: #000000;
  text-decoration: none;
}

.orca-auth-brand .orca-brand-logo-wordmark {
  height: 4rem;
}

.orca-auth-title {
  color: #000000;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.orca-auth-copy {
  margin-top: 0.5rem;
  color: #303032;
  font-size: 1rem;
  line-height: 1.7;
}

.orca-auth-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.orca-auth-field {
  display: grid;
  gap: 0.5rem;
}

.orca-auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.orca-auth-field-footer {
  display: flex;
  justify-content: flex-end;
}

.orca-auth-label {
  color: #1b1b1d;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.orca-auth-link {
  color: #0058be;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.orca-auth-link:hover {
  text-decoration: underline;
}

.orca-auth-input-wrap {
  position: relative;
  display: block;
}

.orca-auth-input {
  width: 100%;
  border: 1px solid #c6c6cd;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1b1b1d;
  font-size: 1rem;
  outline: none;
  padding: 1rem 3rem 1rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.orca-auth-input::placeholder {
  color: #64748b;
}

.orca-auth-input:focus {
  border-color: #0058be;
  box-shadow: 0 0 0 2px rgba(0, 88, 190, 0.16);
}

.orca-auth-input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  color: #a8abb4;
  font-size: 1.5rem;
}

.orca-auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  transition: transform 0.15s ease;
}

.orca-auth-submit:active {
  transform: scale(0.99);
}

.orca-auth-divider {
  margin-top: 2.5rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  text-align: center;
  color: #303032;
  font-size: 0.875rem;
}

.orca-auth-callout,
.orca-auth-error {
  border-radius: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.875rem 1rem;
}

.orca-auth-copy + .orca-auth-callout,
.orca-auth-copy + .orca-auth-error {
  margin-top: 1.25rem;
}

.orca-auth-callout {
  border: 1px solid #d7dde7;
  background: #ffffff;
  color: #45464d;
}

.orca-auth-error {
  border: 1px solid #ffdad6;
  background: #fff7f6;
  color: #93000a;
}

.orca-auth-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c6c6cd;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1b1b1d;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  text-decoration: none;
}

.orca-password-feedback {
  color: #45464d;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
}

.orca-password-feedback.is-valid {
  color: #047857;
}

.orca-password-feedback.is-invalid {
  color: #93000a;
}

@media (max-width: 767px) {
  .orca-auth-page {
    align-items: center;
    padding: 1.25rem;
  }

  .orca-auth-brand {
    margin-bottom: 1.25rem;
  }

  .orca-auth-logo {
    width: 2.625rem;
    height: 2.625rem;
  }

  .orca-auth-brand-text {
    font-size: 1.875rem;
  }

  .orca-auth-title {
    font-size: 1.5rem;
  }

  .orca-auth-copy {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .orca-auth-form {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .orca-auth-input {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .orca-auth-submit {
    padding: 0.875rem 1rem;
  }

  .orca-auth-divider {
    margin-top: 1.5rem;
  }
}
