 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: linear-gradient(145deg, #373d8d, #814991);
      color: white;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .login-container {
      background-color: white;
      color: #162958;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      width: 100%;
      max-width: 420px;
    }

    .login-container h2 {
      text-align: center;
      margin-bottom: 24px;
      color: #373d8d;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .form-group input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .btn-login {
      width: 100%;
      padding: 12px;
      background-color: #373d8d;
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .btn-login:hover {
      background-color: #2d2f7a;
    }

    .login-footer {
      text-align: center;
      margin-top: 16px;
      font-size: 14px;
    }

    .login-footer a {
      color: #814991;
      text-decoration: none;
    }

    .login-footer a:hover {
      text-decoration: underline;
    }

    .logo {
      display: block;
      margin: 0 auto 20px;
      width: 120px;
    }

    .errorlist {
      color: red;
      list-style: none;
      padding-left: 0;
      margin-bottom: 1rem;
    }
    
    a.forgot-password {
    color: #373d8d !important; /* Azul Hashtec */
    text-decoration: underline !important;
    font-weight: 500 !important;
    transition: color 0.3s ease;
    }

    a.forgot-password:hover {
    color: #814991 !important; /* Morado Hashtec */
    text-decoration: underline !important;
    }


    