:root {
  --primary-dark: #0a5c4b;
  --primary: #10c08a;
  --light-green: #e5f7f3;
  --soft-gray: #a3b6b3;
  --text-dark: #1b2b29;
  --white: #ffffff;
  --badge-pending: #f5b461;
  --badge-progress: #b2a4ff;
  --badge-completed: #6edfb2;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: var(--light-green);
  color: var(--text-dark);
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--light-green);
}

.login-box {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  width: 360px;
  max-width: 90%;
  text-align: center;
}

.login-logo {
  width: 70px;
}

.login-box h4 {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.form-control {
  border-radius: 50px;
  padding-left: 20px;
  padding-right: 40px;
  border: 1px solid var(--soft-gray);
  background-color: var(--white);
  color: var(--text-dark);
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(16, 192, 138, 0.25);
  outline: none;
}

.position-relative i.fa-check {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
}

.position-relative a.text-primary {
  font-size: 12px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-dark);
}

.btn.btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(16, 192, 138, 0.3);
  transition: background 0.3s ease;
}

.btn.btn-primary:hover {
  background: var(--primary-dark);
}

.text-muted small {
  color: var(--soft-gray);
}

.d-flex.gap-3 a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--light-green);
  color: var(--primary-dark);
  transition: 0.3s;
}

.d-flex.gap-3 a:hover {
  background-color: var(--primary);
  color: var(--white);
}

.signup small a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.signup small a:hover {
  text-decoration: underline;
}
/* .bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  z-index: 999;
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  color: #888;
  text-decoration: none;
}

.bottom-nav a.active {
  color: #1e88e5;
  font-weight: 600;
}

.bottom-nav-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: white;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  z-index: 1050;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-around;
}

.bottom-nav-floating a {
  flex: 1;
  padding: 6px 4px;
  font-size: 12px;
  text-decoration: none;
  color: #555;
}

.bottom-nav-floating a.active {
  color: #2e7d32;
  font-weight: bold;
}

.bottom-nav-floating i {
  display: block;
  margin-bottom: 2px;
} */
