
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: #1c1c1e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
  width: 320px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.login-container img.logo {
  width: 350px;       /* Puedes ajustar a 200px si quieres más grande */
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.login-container img.logo:hover {
  transform: scale(1.05); /* Efecto de ampliación suave al pasar el mouse */
}


.login-container h2 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #00aaff;
}

.login-container label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
  font-size: 14px;
}

.login-container input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #2a2a2c;
  color: #fff;
  outline: none;
  margin-bottom: 15px;
}

.login-container input:focus {
  box-shadow: 0 0 5px #00aaff;
}

.login-container button {
  width: 100%;
  padding: 10px;
  background: #7ed957;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-container button:hover {
  background: #5ec741;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
