body {
    font-family: Arial, sans-serif;
    background-color: #f3eeea;
    background-image: url('../img/lince.jpg');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 400px;
    margin: 0;
    padding: 0;
}

.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

form {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.alert {
    color: #ff0000;
    margin-bottom: 15px;
    text-align: center;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}


.floating-label-input {
    position: relative;
    margin: 20px 0;
  }
  
  .floating-input {
    width: 96%;
    padding: 10px 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    background-color: transparent;
  }
  
  
  .floating-input::placeholder {
    color: transparent;
  }
  
  
  .floating-label {
    position: absolute;
    top: 50%;
    left: 5px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateY(-50%);
  }
  
 
  .floating-input:focus + .floating-label,
  .floating-input:not(:placeholder-shown) + .floating-label {
    top: 0;
    font-size: 12px;
    color: #333;
    background-color: white;
    padding: 0 4px;
    transform: translateY(-50%);
  }
  
 
  .floating-input {
    transition: border-color 0.3s ease;
  }
  
  .floating-input:focus {
    border-color: #007BFF;
  }

.floating-input:-webkit-autofill {
    background-color: transparent !important; 
    color: #000 !important; 
    -webkit-box-shadow: 0 0 0px 1000px white inset; 
    transition: background-color 5000s ease-in-out 0s; 
  }
  
  /* Ajustes para otros navegadores */
  .floating-input:-moz-autofill {
    background-color: transparent !important;
    color: #000 !important;
  }
  
  .floating-input:-ms-autofill {
    background-color: transparent !important;
    color: #000 !important;
  }
  
  .floating-input:autofill {
    background-color: transparent !important;
    color: #000 !important;
  }
  