ssoteste.gruporaizato.com.br Open in urlscan Pro
188.114.97.3  Public Scan

Submitted URL: https://ssoteste.gruporaizato.com.br/
Effective URL: https://ssoteste.gruporaizato.com.br/login
Submission: On July 23 via automatic, source certstream-suspicious — Scanned from NL

Form analysis 1 forms found in the DOM

POST https://ssoteste.gruporaizato.com.br/login

<form method="POST" action="https://ssoteste.gruporaizato.com.br/login">
  <input type="hidden" name="_token" value="hnuDl04HZAJOg7GaGTSKpFYhwRziWgKRphynnZai" autocomplete="off">
  <div class="page-header">
    <div class="form-title"> Selecione o ambiente a ser acessado </div>
    <div class="empresas">
      <ul>
        <li class="relative flex justify-center items-center">
          <label style="background: linear-gradient(90deg, rgba(84,210,254,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 55%, rgba(84,210,254,1) 100%)"
            class="w-full flex justify-center items-center mx-auto h-[60px] px-2 py-1 rounded-md cursor-pointer mt-3" for="98153eed-d065-4930-804c-b86f814e990b">
            <style>
              .empresas li {
                width: 100%;
                transform: translateX(0);
                transition: width 0.3s, transform 0.3s;
              }

              .empresas li:has(input[type=radio]:checked) {
                width: 104%;
                transform: translateX(-2.50%);
              }

              .empresas label:not(:has(input[type=radio]:checked)) {
                border: 1px solid #D5DAE2 !important;
                background: none !important;
                filter: grayscale(1);
                opacity: .7;
                transition: filter 0.3s, opacity 0.3s;
              }

              .empresas label:has(input[type=radio]:checked) {
                border: 1px solid transparent !important;
                filter: grayscale(0);
                opacity: 1;
              }
            </style>
            <span class="inline-block h-full">
              <input checked="" value="98153eed-d065-4930-804c-b86f814e990b" id="98153eed-d065-4930-804c-b86f814e990b" name="client_id" class="hidden" type="radio">
              <img class="w-[120px] h-[48px] object-contain" src="https://sso-raizato.s3-sa-east-1.amazonaws.com/clients/logos/9c1d560d-71e7-4af8-a3b9-8cd7be4d50a5-logo.png" alt="Logo da empresa">
            </span>
            <span class="inline-block ml-10 h-full">
              <img class="w-[120px] h-[48px] object-contain" src="https://ssoteste.gruporaizato.com.br/img/logos/distribuidor-autorizado-serasa.png" alt="Logo secundária">
            </span>
          </label>
        </li>
        <li class="relative flex justify-center items-center">
          <span class="absolute text-[12px] inline-flex left-2 top-5 items-center px-2.5 py-0.5 rounded-full text-xs font-medium z-10
                                            bg-blue-500 text-white"> Dev </span>
          <label style="background: linear-gradient(90deg, rgba(84,210,254,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 55%, rgba(84,210,254,1) 100%)"
            class="w-full flex justify-center items-center mx-auto h-[60px] px-2 py-1 rounded-md cursor-pointer mt-3" for="98153eed-d065-4930-804c-b86f814e876c">
            <style>
              .empresas li {
                width: 100%;
                transform: translateX(0);
                transition: width 0.3s, transform 0.3s;
              }

              .empresas li:has(input[type=radio]:checked) {
                width: 104%;
                transform: translateX(-2.50%);
              }

              .empresas label:not(:has(input[type=radio]:checked)) {
                border: 1px solid #D5DAE2 !important;
                background: none !important;
                filter: grayscale(1);
                opacity: .7;
                transition: filter 0.3s, opacity 0.3s;
              }

              .empresas label:has(input[type=radio]:checked) {
                border: 1px solid transparent !important;
                filter: grayscale(0);
                opacity: 1;
              }
            </style>
            <span class="inline-block h-full">
              <input value="98153eed-d065-4930-804c-b86f814e876c" id="98153eed-d065-4930-804c-b86f814e876c" name="client_id" class="hidden" type="radio">
              <img class="w-[120px] h-[48px] object-contain" src="https://sso-raizato.s3-sa-east-1.amazonaws.com/clients/logos/9c1d560d-71e7-4af8-a3b9-8cd7be4d50a5-logo.png" alt="Logo da empresa">
            </span>
            <span class="inline-block ml-10 h-full">
              <img class="w-[120px] h-[48px] object-contain" src="https://ssoteste.gruporaizato.com.br/img/logos/distribuidor-autorizado-serasa.png" alt="Logo secundária">
            </span>
          </label>
        </li>
      </ul>
    </div>
  </div>
  <div class="login-separator"></div>
  <div class="form-content">
    <div class="form-title"> Insira seus dados para acesso </div>
    <div class="mt-4">
      <div class="input-group">
        <label for="email">
          <i class="fas fa-user" aria-hidden="true"></i>
          <input placeholder="Login" id="email" name="email" required="" type="text">
        </label>
      </div>
      <div class="input-group mt-4">
        <script>
          function togglePassword(ocultar = false) {
            const password = document.getElementById('password');
            const icon = document.getElementById('password-icon');
            if (password.type !== 'password' || ocultar) {
              password.type = 'password';
              icon.classList.remove('fa-eye');
              icon.classList.add('fa-eye-slash');
            } else {
              password.type = 'text';
              icon.classList.remove('fa-eye-slash');
              icon.classList.add('fa-eye');
            }
          }
        </script>
        <label class="input-icon">
          <i class="fas fa-lock" aria-hidden="true"></i>
          <input placeholder="Senha" id="password" required="" name="password" type="password">
          <i class="fa-solid fa-eye-slash" id="password-icon" style="cursor: pointer;" onmousedown="togglePassword()" onmouseup="togglePassword()" onmouseout="togglePassword(true)" aria-hidden="true"></i>
        </label>
      </div>
    </div>
    <div class="mt-4">
    </div>
    <div class="mt-8">
      <button class="blue-button"> ACESSAR </button>
    </div>
    <div class="mt-5 text-center">
      <a class="text-blue-900" href="https://ssoteste.gruporaizato.com.br/forgot-password">
                    Esqueci minha senha
                </a>
    </div>
  </div>
</form>

Text Content

Selecione o ambiente a ser acessado
 * 
 * Dev


Insira seus dados para acesso


ACESSAR
Esqueci minha senha