/* =====================================================
   auth.css — Login / authentication pages only
   Used by: index.php
   ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 40, 25, 0.85), rgba(0, 40, 25, 0.88)),
    url("https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 20px;
}

/* ================= LOGIN CARD ================= */

.login-box {
  width: 100%;
  max-width: 430px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 45px 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: #fff;
}

/* ================= LOGO ================= */

.logo {
  text-align: center;
  margin-bottom: 35px;
}

.logo-circle {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #c59d00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #000;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.logo h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.logo p {
  color: #d1d5db;
  font-size: 14px;
}

/* ================= INPUTS ================= */

.input-group {
  margin-bottom: 22px;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #f3f4f6;
}

.input-box {
  position: relative;
}

.input-box input {
  width: 100%;
  padding: 16px 18px;
  border: none;
  outline: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.input-box input:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

.input-box input::placeholder {
  color: #cbd5e1;
}

/* ================= OPTIONS ================= */

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  font-size: 14px;
}

.options a {
  color: #ffd700;
  text-decoration: none;
}

/* ================= BUTTON ================= */

.login-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd700, #c59d00);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.login-btn:hover {
  transform: translateY(-3px);
}

/* ================= FOOTER ================= */

.footer-text {
  text-align: center;
  margin-top: 28px;
  color: #d1d5db;
  font-size: 14px;
}

.footer-text a {
  color: #ffd700;
  text-decoration: none;
}

/* ================= MOBILE ================= */

@media (max-width: 500px) {
  .login-box {
    padding: 35px 25px;
  }

  .logo h1 {
    font-size: 24px;
  }
}
