/* === VARIABLES CSS === */
:root {
  --primary: #4361ee;
  --secondary: #3f37c9;
  --success: #4cc9f0;
  --dark: #1d3557;
  --light: #f8f9fac4;
  --lightTransparent: #ffffff7a;
  --danger: #e74c3c;
  --warning: #f39c12;
  --info: #3498db;
}

body {
  background: linear-gradient(135deg, var(--dark), var(--info));
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-card {
  max-width: 400px;
  border: 2px solid rgb(0, 0, 0);
  box-shadow: 0 15px 50px rgba(5, 9, 35, 0.892);
  background: var(--light);
  border-radius: 15px;
}

.logo {
  display: block;
  margin: 0 auto;
  width: 100px; /* Ajusta según tu logo */
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.forgot-password {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.forgot-password:hover {
  text-decoration: underline;
  font-weight: bold;
}
.btn-block {
  background-color: var(--primary);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 20px;
}
