* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
}
.left-section h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.left-section p {
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.5;
}

.right-section {
  flex: 1.2;
  background: linear-gradient(to bottom, #eae9c2ff 0%, #e1f2eb 100%);
  border: transparent;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.login-container {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-container img {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
}

.form-group {
  width: 100%;
}

label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  display: block;
  font-size: 15px;
}

input[type="text"],
input[type="password"] {
  width: 490px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #2e7d32;
  outline: none;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

.eye-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #2e7d32;
  font-size: 18px;
}

.forgot-password {
  display: block;
  text-align: right;
  margin-bottom: 45px;
  color: #d32f2f;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #b71c1c;
}

.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(to right, #698425, #1b601e);
  color: #fff;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}

.login-btn:hover {
  opacity: 0.9;
}

.signup-buttons {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-top: 10px;
}

.signup-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid #228b22;
  border-radius: 25px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: #228b22;
  transition: all 0.3s ease;
}

.signup-btn:hover {
  background: #228b22;
  color: #fff;
}

.signup2-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid #228b22;
  border-radius: 25px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: #8a8f05ff;
  transition: all 0.3s ease;
}

.signup2-btn:hover {
  background: #228b22;
  color: #fff;
}

.msg {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.left-section {
  flex: 0.8;
  background: url("../../img/background.png") no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .left-section {
    display: none;
  }

  .right-section {
    flex: none;
    width: 100%;
    height: 100vh;
    padding: 20px;
  }

  .login-container {
    max-width: 100%;
  }

  .login-container img {
    width: 120px;
  }

  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .password-wrapper {
    width: 100%;
  }

  .login-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .signup-buttons {
    width: 100%;
  }

  .signup-btn,
  .signup2-btn {
    padding: 12px;
    font-size: 15px;
  }

  .forgot-password {
    font-size: 15px;
  }
}
