body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Evita el desplazamiento horizontal */
    background-color: #1c1c1c; /* Fondo oscuro */
    color: #fff; /* Texto blanco */
  }
  
  .form-wrapper {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .form-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffcc00; /* Título en amarillo */
  }
  
  .form-control {
    position: relative;
    margin-bottom: 30px;
  }
  
  .form-control input {
    width: 100%;
    padding: 10px;
    background-color: #444;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
  }
  
  .form-control label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .form-control input:focus + label,
  .form-control input:not(:placeholder-shown) + label {
    top: -10px;
    left: 5px;
    font-size: 12px;
    color: #ffcc00; /* Cambia de color al interactuar */
  }
  
  button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #ff4747;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #cc2b2b;
  }
  
  .form-help {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  
  .form-help a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 14px;
  }
  
  .form-help a:hover {
    text-decoration: underline;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
  }
  
  .remember-me input {
    margin-right: 5px;
  }
  
  p {
    text-align: center;
    margin-top: 20px;
  }
  
  p a {
    color: #ffcc00;
    text-decoration: none;
  }
  
  p a:hover {
    text-decoration: underline;
  }
  