.login-page {
  background: linear-gradient(135deg, #4A6A34 0%, #5A7A44 100%);
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.login-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #4A6A34;
}
.login-box-body {
  padding: 40px;
  background: #fff;
}
.login-box-msg {
  text-align: center;
  margin-bottom: 20px;
}
.login-box-msg img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 150px !important;
  height: auto;
  display: block;
  margin: 0 auto;
}
.btn-primary {
  background-color: #4A6A34;
  border-color: #4A6A34;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #3A5A24;
  border-color: #3A5A24;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 106, 52, 0.4);
}
.form-control {
  border-radius: 25px;
  border: 2px solid #ddd;
  padding: 15px 20px;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: #4A6A34;
  box-shadow: 0 0 10px rgba(74, 106, 52, 0.2);
}

hr {
  border-top: 2px solid #4A6A34;
  margin: 30px 0;
}
.login-footer {
  background: #4A6A34;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 15px 15px;
  margin-top: 20px;
}
.login-footer p {
  margin: 0;
  font-size: 14px;
}
