
    body {
      background: linear-gradient(to bottom, #33559B, #33559B);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }

    .login-card {
      width: 100%;
      max-width: 400px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      animation: fadeIn 0.8s ease-in-out;
	  background-color: rgba(255, 255, 255, 0.7);
    }

    .login-header {
      background-color: #FFF;
      color: #999;
      padding: 24px;
      text-align: center;
    }

    .login-header h2 {
      margin: 0;
      font-weight: 700;
    }

    .login-form {
      padding: 24px;
    }

    .login-form label {
      font-weight: bold;
      color: #1f406e;
    }

    .login-form input[type="text"],
    .login-form input[type="password"] {
      margin-top: 8px;
      margin-bottom: 16px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      width: 100%;
      box-sizing: border-box;
    }

    .login-form .w3-check {
      margin-right: 8px;
    }

    .login-form button {
      width: 100%;
      padding: 12px;
      background-color: #33559B;
	     color:#FFF; 
      border: 1px solid #33559B;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .login-form button:hover {
      background-color: #FFF;
	  color: #33559B;

    }

    .w3-panel {
      margin-top: 16px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

.password-container {
    position: relative;
}

.password-container input[type="password"],
.password-container input[type="text"] {
    width: 100%;
    /* Adiciona um preenchimento à direita para o ícone não sobrepor o texto */
    padding-right: 40px; 
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px; /* Distância da borda direita */
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .loader {
      position: relative;
      width: 120px;
      height: 120px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .spinner {
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 8px solid transparent;
      border-top: 8px solid #33559B;
      border-right: 8px solid #33559B;
      animation: spin 1s linear infinite;
      box-shadow: 0 0 18px #33559B;
    }

    .loader i {
      font-size: 60px;
      color: #33559B;
      z-index: 1;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

.div-sobreposta {
    position: fixed; /* 1. Fixa a posição em relação à janela de visualização */
    top: 0;          /* 2. Alinha a div ao topo da tela */
    left: 0;         /* 3. Alinha a div à esquerda da tela */
    width: 100%;     /* 4. Faz a div ocupar 100% da largura da tela */
    height: 100%;    /* 5. Faz a div ocupar 100% da altura da tela */
    background-color: rgba(255, 255, 255, 0.7); /* 6. Fundo semitransparente para destacar */
    z-index: 10;   /* 7. Garante que ela fique por cima de tudo */
	display:none;

    /* Propriedades para estilizar o conteúdo interno (opcional) */
    display: flex;
    justify-content: center;
    flex-direction: column;
}