body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f2f2;
}

.login-container {
  display: flex;
  height: 100vh;
}

/* Parte izquierda con imagen */
.login-left {
  flex: 1;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Parte derecha con el formulario */
.login-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.login-box {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
}

.logo-circular {
  display: block;
  margin: 0 auto 20px auto;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2d9c65;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2d9c65;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #444;
}

form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #2d9c65;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #21804f;
}

/* Responsive */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .login-left,
  .login-right {
    flex: none;
    width: 100%;
    height: auto;
  }

  .login-left img {
    height: 200px;
  }
}
