
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow-x: hidden;
        }

        /* Elementos decorativos de fundo 
        .background-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .card-element {
            position: absolute;
            width: 60px;
            height: 90px;
            background: linear-gradient(45deg, #8B4513, #A0522D);
            border-radius: 8px;
            border: 2px solid #DAA520;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .coin-element {
            position: absolute;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, #FFD700, #FFA500);
            border-radius: 50%;
            border: 2px solid #B8860B;
            opacity: 0.4;
            animation: spin 8s linear infinite;
        }

        .card-element:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
        .card-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
        .card-element:nth-child(3) { bottom: 15%; left: 8%; animation-delay: 4s; }
        .card-element:nth-child(4) { bottom: 25%; right: 5%; animation-delay: 1s; }

        .coin-element:nth-child(5) { top: 15%; left: 15%; animation-delay: 1s; }
        .coin-element:nth-child(6) { top: 30%; right: 20%; animation-delay: 3s; }
        .coin-element:nth-child(7) { bottom: 20%; left: 20%; animation-delay: 5s; }
        .coin-element:nth-child(8) { bottom: 10%; right: 15%; animation-delay: 2s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

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

        /* Container principal */
        .container {
            background: rgba(45, 45, 45, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            max-width: 500px;
            width: 90%;
            position: relative;
            z-index: 10;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Header com logo */
        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo-section {
            position: relative;
            overflow: hidden;
        }

        .logo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="20" width="20" height="30" fill="%23fff" opacity="0.1"/><rect x="35" y="15" width="20" height="30" fill="%23fff" opacity="0.1"/><rect x="60" y="25" width="20" height="30" fill="%23fff" opacity="0.1"/></svg>') repeat;
            opacity: 0.2;
        }

         .logo-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 10px;
            position: relative;
            z-index: 1;
        }

        .subtitle {
            color: #ffffff;
            font-size: 16px;
            margin-top: 15px;
            font-weight: 300;
        }

        /* Formulário */
        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 15px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            color: #ffffff;
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        input, select {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            background: #ffffff;
            color: #333;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        input:focus, select:focus {
            outline: none;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        /* Cores específicas para cada campo */
        .field-login { border-left: 5px solid #4CAF50; }
        .field-cpf { border-left: 5px solid #9C27B0; }
        .field-contact { border-left: 5px solid #FF9800; }
        .field-password { border-left: 5px solid #E91E63; }
        .field-confirm { border-left: 5px solid #00BCD4; }
        .field-agent { border-left: 5px solid #9C27B0; }

        /* Data de nascimento */
        .date-group {
            display: flex;
            gap: 10px;
        }

        .date-group select {
            flex: 1;
        }

        /* Checkbox */
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 25px 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin: 0;
            transform: scale(1.2);
        }

        .checkbox-group label {
            margin: 0;
            font-size: 13px;
            line-height: 1.4;
            color: #cccccc;
        }

        /* Botão */
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #000;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Responsividade */
        @media (max-width: 600px) {

            .container {
                padding: 25px;
                margin: 20px;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .date-group {
                flex-direction: column;
            }

            .logo-image {
                max-width: 300px;
            }
        }

        /* Validação visual */
        .password-requirements {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
            line-height: 1.3;
        }


        .radio-group {
          margin: 30px 10;
          display: flex;
          flex-direction: column;
          gap: 15px;
        }

        .radio-option {
          background-color: #111;
          border: 7px solid #222;
          border-radius: 20px;
          padding: 15px 20px;
          display: flex;
          align-items: center;
          gap: 10px;
          color: #fff;
          font-size: 20px;
          cursor: pointer;
          transition: background 0.3s ease, border 0.3s ease;
        }

        .radio-option:hover {
          background-color: #222;
          border-color: #50c947;
        }

        /* ESSENCIAL para centralizar a bolinha */
        .radio-option input[type="radio"] {
          appearance: none;
          width: 22px;
          height: 22px;
          border: 2px solid #fff;
          border-radius: 50%;
          background-color: transparent;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          position: relative; /* 🔥 ESSENCIAL para o ::before funcionar */
        }

        /* Bolinha verde */
        .radio-option input[type="radio"]::before {
          content: "";
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background-color: #00ff9f;
          display: none;
          position: absolute; /* opcional aqui, mas funciona melhor */
        }

        /* Exibe bolinha quando marcado */
        .radio-option input[type="radio"]:checked::before {
          display: inline-block;
        }



        .code-inputs {
          display: flex;
          justify-content: center;
          gap: 12px;
          margin: 25px 0;
        }

        .code-digit {
          width: 45px;
          height: 50px;
          text-align: center;
          font-size: 24px;
          font-weight: bold;
          border: none;
          border-radius: 10px;
          background-color: white;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .code-digit:focus {
          outline: 2px solid #FFD700;
        }


    .flash-messages {
      margin-top: 15px;
      padding: 10px;
      text-align: center;
    }

    .flash {
      background-color: #ff4d4d;
      color: white;
      padding: 10px 15px;
      border-radius: 8px;
      margin-bottom: 10px;
      font-weight: bold;
    }


    .flash {
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 8px;
      font-weight: bold;
      text-align: center;
    }

    /* Erro (vermelho) */
    .flash.erro {
      background-color: #ff4d4d;
      color: white;
}

    /* Sucesso (verde) */
    .flash.sucesso {
      background-color: #00c851;
      color: white;
    }



    /* botão responsivo para PlayStore */
.btn-playstore {
  display: block;            /* ocupa toda a largura do container */
  width: 100%;               /* adapta em mobile e desktop */
  max-width: 360px;          /* opcional, para não estourar em telas grandes */
  margin: 20px auto 0;       /* centraliza horizontalmente */
  padding: 12px 20px;        /* área ampla para toque */
  font-size: 1rem;           /* legível no mobile */
  text-align: center;        /* centraliza o texto */
  box-sizing: border-box;    /* inclui padding na largura total */
  background: linear-gradient(90deg, #eaff29, #eaff29);
  color: #000;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
}

/* ajustes finos em telas muito pequenas */
@media (max-width: 400px) {
  .btn-playstore {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}



.btn-playstore {
  display: flex;              /* flex container */
  align-items: center;        /* verticalmente centralizado */
  justify-content: center;    /* horizontalmente centralizado */
  gap: 8px;                   /* espaço entre ícone e texto */
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0;
  padding: 12px 20px;
  font-size: 1rem;
  box-sizing: border-box;
  background: linear-gradient(90deg, #eaff29, #eaff29);
  color: #000;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
}

    /* ajustes finos em telas muito pequenas */
    @media (max-width: 400px) {
      .btn-playstore {
        padding: 10px 12px;
        font-size: 0.9rem;
      }
    }




body {
  background: url("/static/gaming_background5.jpg") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}




/* Estilo específico do campo do agente (mesmo desabilitado) */
.agent-id:disabled {
  background-color: #1f2937;   /* cor de fundo */
  color: #ffffff;              /* cor do texto */
  font-weight: 700;            /* negrito */
  border: 1px solid #374151;   /* opcional */
  opacity: 1;                  /* tira aparência "apagada" do disabled */
  cursor: not-allowed;
  -webkit-text-fill-color: #ffffff; /* necessário p/ Safari/Chrome em disabled */
}
