body {
    background: radial-gradient(circle at center, #00C896 0%, #003D4C 100%);
    min-height: 100vh; /* muda de height para min-height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow-x: hidden; /* permite rolar verticalmente, mas não horizontalmente */
    z-index: 0;
    margin: 0; /* evita rolagem por margem padrão */
    
}



body::before {
    content: "";
    position: fixed; /* importante: 'fixed' não interfere no fluxo do conteúdo */
    top: 30px;
    left: 30px;
    width: 750px;     /* ou outro valor adequado */
    height: 834px;
    background-image: url('/imagens/pagando.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    z-index: -1;
    opacity: 0.8;
    pointer-events: none;
}

.auth-card {
    background: #141517;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 480px;
    padding: 0 2.5rem 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  
  .auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: radial-gradient(circle at center, #00C896 0%, #003D4C 100%);
  }

/* NOVO CSS RESPONSIVO */
  .auth-card > img {
    display: block;
    margin: 0 auto 1rem auto; /* Mobile: 0 no topo */
    max-width: 250px;
  }

  /* Aplica margem de 35px APENAS em desktop (telas maiores que 768px) */
  @media (min-width: 768px) {
    .auth-card > img {
      margin-top: 35px !important;
    }
  }
.form-control:focus {
    border-color: #00C896 !important;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25) !important;
    outline: none !important;
}
  .login-container {
    padding-top: 0; /* Remove padding superior */
    margin-top: 0; /* Remove margem superior */
  }
        .login-container h2 {
            margin-bottom: 1.5rem;
            color: #4a4a4a;
            font-weight: 700;
            text-align: center;
        }
        
       .form-control {
    background-color: #2c2f33; /* cinza escuro */
    color: #ffffff;            /* texto branco */
    border: 2px solid #444;    /* borda mais grossa */
    padding: 10px 11px;        /* mais altura (espaço interno) */
    font-size: 1.1rem;         /* texto um pouco maior */
    border-radius: 6px;        /* cantos arredondados */
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus {
    background-color: #2c2f33; /* manter o fundo escuro */
    color: #ffffff;
    border-color: #00C896;
    border-width: 2px;          /* borda grossa também no foco */
    box-shadow: 0 0 0 0.25rem rgb(102 126 234 / 0.3);
}


       .btn-login {
    background: radial-gradient(circle at center, #00C896 0%, #003D4C 100%);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-login:hover {
    background-color: rgb(64, 87, 218); /* fallback em caso de erro no gradiente */
    color: #fff;
    transform: translateY(-3px); /* ← movimento para cima */
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2); /* sombra mais intensa */
}

       .register-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.register-link a {
    color: #00C896; /* roxo */
    text-decoration: none; /* opcional: remove sublinhado */
    font-weight: bold;     /* opcional: deixa em negrito */
}

.register-link a:hover {
    color: #00C896; /* roxo mais escuro ao passar o mouse */
    text-decoration: underline; /* opcional: feedback visual */
}
.slogan-container {
    padding: 10px 0;
    width: 100%;
}

.slogan-text {
    font-size: 2rem;
    font-weight: bold;
    color: #fff; /* ou a cor que combinar com seu design */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

        .error-message {
            background-color: rgb(255, 0, 0);
            color: rgb(201, 203, 206);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            text-align: center;
        }
        .top-alerts {
            width: 100%;
            max-width: 400px;
            margin-bottom: 20px;
        }
         /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .auth-card {
            animation: fadeIn 0.5s ease-out;
        }
        
        /* Responsividade */
        @media (max-width: 576px) {
            .auth-card {
                padding: 1.5rem;
            }
        }
  