@import url('https://fonts.googleapis.com/css?family=Numans');

html, body {
  background-color: rgb(102, 102, 102) !important;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  font-family: 'Numans', sans-serif;
  /* Añadimos espacio para el footer si es necesario */
  padding-bottom: 70px;
  box-sizing: border-box;
}

.container {
  height: 100%;
  align-content: center;
}

.card {
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  width: 400px;
  background-color: #374042 !important;
  padding: 20px;
  border-radius: 10px;
}

.card-header h3 {
  color: #ffffff;
  text-align: center;
}


/* Añadimos esta regla para que las etiquetas del formulario sean visibles */
.card .form-label {
    color: rgba(255, 255, 255, 0.9);
}


.input-group-prepend span {
  width: 50px;
  background-color: #f7c633;
  color: black;
  border: 0 !important;
}

input:focus {
  outline: 0 0 0 0 !important;
  box-shadow: 0 0 0 0 !important;
}


input.form-control {
  color: #000000; /* Texto NEGRO para que sea legible sobre el fondo blanco del input */
  background-color: #fff;
  border: 1px solid #198754;
  border-radius: 5px;
}

.remember {
  color: white;
}

.remember input {
  width: 20px;
  height: 20px;
  margin-left: 15px;
  margin-right: 5px;
}

.login_btn {
  color: #ffffff;
  background-color: #198754;
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

.login_btn:hover {
  color: #198754;
  background-color: white;
}

.links {
  color: #198754; /* Cambia el color del texto "¿No tienes una cuenta?" a blanco */
  text-align: center;
}

.links a {
  color: #198754; /* El verde que querías para el enlace */
  margin-left: 4px;
  font-weight: bold; /* Hacemos que resalte un poco más */
}

.links a:hover {
    color: #2ecc71; /* Un verde más brillante para el hover */
    text-decoration: underline; 
}

.form-text ul,
.form-text li {
    color: #ffffff;          /* Un gris claro, estándar en Bootstrap */
    font-size: 0.875em;     /* Un poco más pequeño que el texto normal */
    
    padding-left: 0;        /* Quita el espaciado izquierdo de la lista */
    margin-bottom: 0;       /* Elimina el margen inferior del <ul> */
}