body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: linear-gradient(135deg, #16a34a, #10b981);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.logo-area {
  text-align: center;
  margin-bottom: 30px;
}

.logo-area img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.logo-area h1 {
  margin: 0;
  font-size: 30px;
  color: #065f46;
}

.logo-area p {
  color: #666;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 16px 50px;
  border: none;
  border-radius: 15px;
  background: #f3f4f6;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.input-group i {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #10b981;
}

.togglePassword {
  position: absolute;
  right: 15px;
  top: 10px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.remember {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  font-size: 14px;
}

.btn-login {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 15px;
  background: #10b981;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px);
  background: #059669;
}

.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.divider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.google {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #ddd;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
}

.google img {
  width: 24px;
}

.register {
  text-align: center;
  margin-top: 25px;
}

.register a {
  text-decoration: none;
  color: #10b981;
  font-weight: bold;
}