body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 50% 50%, #e0f2f1 0%, #a5d6a7 60%, #66bb6a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.login-container {
  max-width: 950px;
  width: 100%;
  padding: 20px;
}

.login-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.login-form {
  flex: 1;
  padding: 60px 40px;
  background-color: #f8fcf8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.logo ion-icon {
    font-size: 28px;
    margin-right: 10px;
    color: #2e7d32;
}

.logo img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


.login-form h1 {
  color: #2e7d32;
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.login-form p {
  color: #4caf50;
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 40px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 25px;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.login-form button {
  background-color: #388e3c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: #2e7d32;
}

.login-image {
  flex: 1;
  background-color: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.login-image img {
  width: 100%;
  max-width: 400px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.logo-underline {
  height: 3px;
  width: 200px;
  background-color: #4caf50;
  margin: -30px auto 20px auto;
  border-radius: 2px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
