/* ================= AUTH PAGES ================= */

.auth-hero{
  position: relative;
  min-height: calc(100vh - 75px); 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px 26px;
  overflow: hidden;
}

.auth-bg{
  position: absolute;
  inset: 0;
  background: url("../images/landing-city.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.auth-tint{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.auth-card{
  position: relative;
  width: 460px;
  max-width: 92vw;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 22px;
  text-align: center;
}

.auth-card h1{
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.auth-sub{
  font-size: 12px;
  color: #333;
  margin-bottom: 16px;
}

.auth-form{
  display: grid;
  gap: 10px;
}

.auth-field{
  height: 38px;
  border: 1px solid #d7d7d7;
  background: #fff;
}

.auth-field input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 10px;
}

.auth-btn{
  height: 36px;
  border-radius: 6px;
  background: rgb(0, 128, 0);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.auth-btn:hover{
  background-color: rgb(18, 140, 0);
}

.auth-login,
.auth-note{
  font-size: 12px;
}

.auth-login a,
.auth-forgot{
  color: #18a800;
  font-weight: 700;
  text-decoration: none;
}

.auth-forgot:hover,
.auth-login a:hover{
  text-decoration: underline;
}

/* ===== Forgot Password Modal ===== */
.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-card{
  background: #fff;
  border-radius: 8px;
  padding: 26px;
  text-align: center;
}

.modal-ok{
  background: #18a800;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}

.auth-card .btn-outline {
  background: rgb(0, 128, 0) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
}

.auth-card .btn-outline:hover {
  background: rgb(18, 140, 0) !important;
}
/* Error Message */
.error-message {
  background: #ffe5e5;
  color: #d8000c;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}
