/* Estilos Base */
body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Variables Globales / Fondos */
.imagen-fondo {
  background-image: url('../imagenes/fondo.jpg');
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  width: 100%;
  z-index: -1;
}

/* Contenedores Principales */
.contenedor-login {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.tarjeta-login {
  background-color: #094985;
  border: 10px solid #d4c59a;
  border-radius: 40px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* Clases Extraídas */
.contenedor-logo {
  margin: 0 auto 18px auto;
  max-width: 260px;
}
.imagen-logo {
  display: block;
  width: 100%;
  max-height: 165px;
  height: auto;
  border-radius: 5px;
}
.alinear-izquierda {
  text-align: left;
  width: 100%;
}

/* Formulario / Inputs */
.entrada-personalizada {
  background-color: #e0e0e0;
  border: none;
  border-radius: 20px;
  padding: 12px 20px;
  margin-bottom: 25px;
  color: #333;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
  display: block;
}
.entrada-personalizada:focus {
  background-color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
  outline: none;
}

/* Botones */
.boton-naranja {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.boton-naranja:hover {
  background-color: #e65c00;
  color: white;
}

/* Enlaces / Footer */
.enlaces-inferiores {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 10px;
}
.enlace-inferior {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.enlace-inferior:hover {
  color: #ffffff;
  text-decoration: underline;
}