/* ---------- Auth Pages ---------- */

.auth-main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 1rem 2rem;
}

.auth-card {
  width: 100%;
  max-width: 28rem;
  margin-top: 1rem;
  background: rgba(5, 46, 22, 0.95);
  border-radius: 0.95rem;
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(163, 230, 53, 0.3);
  padding: 1.5rem 1.75rem 1.75rem;
  text-align: left;
}

.auth-title {
  margin: 0 0 0.35rem;
  color: #f1faee;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.auth-subtitle {
  margin: 0 0 1.25rem;
  color: rgba(241, 250, 238, 0.78);
  font-size: 0.95rem;
  text-align: center;
}

.auth-message {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  color: #f1faee;
  font-size: 0.95rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
}

.auth-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: #f1faee;
}

.auth-input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background-color: #e5e7eb;
  color: #111827;
  font-size: 1rem;
  box-sizing: border-box;
}

.auth-input:focus {
  outline: 2px solid rgba(77, 171, 247, 0.65);
  outline-offset: 1px;
}

.auth-submit {
  margin-top: 0.35rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  background-color: #38b000;
  color: #f1faee;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
  box-shadow: 0 0.2rem 0.45rem rgba(0, 0, 0, 0.45);
}

.auth-submit:hover {
  background-color: #2d9100;
  transform: translateY(-1px);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-links {
  margin-top: 1rem;
  text-align: center;
  color: rgba(241, 250, 238, 0.82);
  font-size: 0.95rem;
}

.auth-links a {
  color: #a7f3d0;
  text-decoration: none;
  font-weight: 600;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.pending-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pending-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
}

.pending-meta {
  color: #f1faee;
  text-align: left;
  font-size: 0.95rem;
}

.pending-meta span,
.pending-meta small {
  color: rgba(241, 250, 238, 0.82);
}

.pending-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pending-actions form {
  margin: 0;
}

.deny-btn {
  background-color: #b02a37;
}

.deny-btn:hover {
  background-color: #8e1f2b;
}

@media (max-width: 600px) {
  .pending-item {
    flex-direction: column;
    align-items: stretch;
  }

  .pending-actions {
    justify-content: stretch;
  }

  .pending-actions form {
    width: 100%;
  }

  .pending-actions .auth-submit {
    width: 100%;
  }

  .auth-card {
    margin-top: 0;
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .auth-title {
    font-size: 1.8rem;
  }
}
