* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  body, html {
    height: 100%;
  }
  
  .login-container {
    background-color: #b366f8; /* color de fondo morado */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .login-box {
    text-align: center;
    width: 300px;
  }
  
  .logo {
    max-width: 200px;
    margin-bottom: 40px;
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  label {
    font-size: 14px;
    color: white;
    text-align: left;
    margin-bottom: -20px;
  }
  
  .input-wrapper {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 15px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .input-wrapper .icon {
    font-size: 18px;
    color: white;
    display: flex;
  }
  
  input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
    font-size: 14px;
  }
  
  input::placeholder {
    color: #ddd;
  }
  
  button {
    background-color: white;
    color: #B477F0;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 80%;
    margin: 10px auto;
    font-size: 1em;
  }
  
  button:hover {
    background-color: #f3eaff;
  }

  .toggle-text {
    font-size: 14px;
    color: white;
  }
  
  .toggle-text span {
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
  }