.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(45, 155, 143, 0.12), transparent 60%),
    #0f161b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 64px;
}

.auth-shell {
  width: 100%;
  max-width: 420px;
}

.auth-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 30px;
  background: #182129;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.auth-logo {
  width: 200px;
  max-width: 72%;
  height: auto;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.auth-title {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-align: center;
}

.auth-subtitle {
  margin: 4px 0 24px;
  color: #5fb9ad;
  font-size: 14px;
  text-align: center;
}

.auth-card form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #aebcc3;
  font-size: 13px;
  font-weight: 600;
}

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

.auth-input input {
  width: 100%;
  min-height: 46px;
  padding: 0 46px 0 14px;
  background: #0f161b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: #f7fbfc;
  font-size: 14px;
  outline: 0;
}

.auth-input input::placeholder {
  color: #5d6b73;
}

.auth-input input:focus {
  border-color: #2d9b8f;
  box-shadow: 0 0 0 3px rgba(45, 155, 143, 0.18);
}

.auth-input-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #2d9b8f;
  pointer-events: none;
}

.auth-input-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.auth-submit {
  margin-top: 6px;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.auth-submit:hover {
  filter: brightness(1.07);
}

.auth-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.auth-error {
  width: 100%;
  min-height: 18px;
  margin-top: 14px;
  color: #ff6b6b;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

.auth-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  text-align: center;
  font-size: 12px;
  color: #8fa0a9;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 28px 20px;
  }

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