/* Fondo moderno */
body {
  height: 100vh;
  background: linear-gradient(135deg, #067440, #ecf577);
  font-family: 'Segoe UI', sans-serif;
}

/* Contenedor */
.login-container {
  height: 100%;
}

/* Card */
.login-card {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Inputs */
.input-custom {
  border-radius: 10px;
  border: 1px solid #ddd;
}

.input-custom:focus {
  border-color: #4e73df;
  box-shadow: 0 0 8px rgba(78, 115, 223, 0.3);
}

/* Botón */
.btn-custom {
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #0aac53;
  transform: translateY(-2px);
}

/* Link */
.link-custom {
  text-decoration: none;
  font-size: 0.9rem;
}

.link-custom:hover {
  text-decoration: underline;
}

.logo-container {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.logo-container img {
  width: 110px;
}