/* SECTION */
/* SECTION */
.login-section {
  width: 100%;
  min-height: calc(100vh - 180px); /* header + footer safe */
  background: #f3f9e8;

  display: flex;
  justify-content: center;

  /* 🔑 CHANGE HERE */
  align-items: flex-start;

  /* 🔑 PUSH SECTION DOWN */
  padding: 200px 20px 80px; /* top | left-right | bottom */
}


/* CONTAINER */
.login-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

/* CARD */
.login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* TITLE */
.login-title {
  text-align: center;
  color: #81c408;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* INPUTS */
.login-input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  margin-bottom: 18px;
  font-size: 14px;
  background: #fafafa;
}

.login-input:focus {
  outline: none;
  background: #fff;
  border-color: #81c408;
  box-shadow: 0 0 0 3px rgba(129, 196, 8, 0.2);
}

/* OPTIONS */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 26px;
  color: #555;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
}

.forgot-link {
  color: #ffb524;
  text-decoration: none;
  font-weight: 500;
}

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

/* BUTTON */
.login-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #81c408, #ffb524);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.login-btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* REGISTER */
.login-register {
  text-align: center;
  font-size: 14px;
  margin-top: 22px;
  color: #555;
}

.login-register a {
  color: #81c408;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .login-section {
    padding: 160px 50px 0px 50px;

  }
}