:root{

    --blanco: #fff;
    --secundario: #fab30a;
    --primario: #57072e;
    --oscuro: #26292c;
    --gris: #bdbdbd;

    --fuentePrincipal: "Lato", sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

  /** GLOBALES **/
  body {
    margin: 0;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, var(--blanco) 0%, var(--primario) 100%); /* fondo rosado suave */
  }

  .login-box {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 350px;
  }

  .login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
  }

  .login-box input[type="email"],
  .login-box input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border 0.3s;
  }

  .login-box input:focus {
    border-color: #ff006e;
    outline: none;
  }

  .password-wrapper {
    position: relative;
  }

  .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #888;
  }

  .login-box button {
    width: 100%;
    background-color: #ff006e;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .login-box button:hover {
    background-color: #e6005c;
  }

  .login-box .forgot {
    text-align: center;
    margin-top: 15px;
  }

  .login-box .forgot a {
    color: #ff006e;
    text-decoration: none;
    font-size: 14px;
  }

  .login-box .forgot a:hover {
    text-decoration: underline;
  }