:root {
  --primary-green: #198754;
  --dark-green: #157347;
  --light-green: #dcfce7;
  --text-dark: #292524;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --ink: #44403c;
  --brand: var(--primary-green);
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background-color: #f7f9fb;
  color: var(--text-dark);
}

a {
  text-decoration: none;
}

.navbar {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  font-weight: 800;
  color: var(--brand);
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--brand);
}

.first:hover {
  background-color: #f0fdf4 !important;
}

.sec:focus {
  background-color: #0f8a3d !important;
  color: #fff !important;
}
.bttn-outline-brand {
  border: 1px solid var(--brand);
  color: var(--brand);
}

.bttn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}

.bttn-brand {
  background: var(--brand) !important;
  color: #fff;
}

.bttn-brand:hover {
  background: var(--dark-green) !important;
  color: #fff;
}

.btn {
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.signup-btn {
  background: var(--primary-green);
  color: white;
}

.login-btn {
  background: #f0f7f0;
  color: #222;
}

/* Centered Form */
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
}

.form-box {
  text-align: center;
  width: 340px;
}

h2 {
  margin-bottom: 25px;
  font-weight: 700;
}

label {
  display: block;
  text-align: left;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #d1e8d1;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  color: #222;
}

input::placeholder {
  color: #75964f;
}

.login-main-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
}

.login-main-btn:hover {
  background: var(--dark-green);
}

.forgot {
  display: block;
  margin-top: 10px;
  color: #75964f;
  font-size: 13px;
  text-decoration: none;
}

.forgot:hover {
  text-decoration: underline;
}

.google-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #e2e8e2;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0a0a0a;
}

.google-btn:hover {
  transition: 0.2s;
  background: #c7ccc7;
}

.google-btn img {
  width: 18px;
  height: 18px;
}

.signup-text {
  margin-top: 15px;
  font-size: 14px;
  color: #75964f;
}

.signup-text a {
  text-decoration: none;
  color: #75964f;
}

.signUp-link:hover {
  text-decoration: underline;
}


/* Footer */
.footer {
  background: #292524;
  color: #d1d5db;
  padding: 3rem 0 1rem;
}

.footer .footer-brand {
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.35rem;
  font-style: italic;
}

.footer .footer-brand span {
  color: #d1d5db;
}

.footer .footer-link {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  margin: 0.35rem 0;
}

.footer .footer-link:hover {
  color: var(--primary-green);
}

.social-link {
  width: 40px;
  height: 40px;
  background: #d1d5db;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #292524;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-green);
}
