body {
     font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    display: flex;
    flex-direction: column;   /* coloca tudo em coluna */
    align-items: center;      /* centraliza no eixo horizontal */
    min-height: 100vh;        /* ocupa a tela toda */
    margin: 0;
    padding: 20px;
}

.Cadastro {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    width: 350px;
}

.Cadastro h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #ffdd57;
}

.Cadastro label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
}

.Cadastro input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

button {
    background: #ffdd57;
    border: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 10px 5px 0 0;
    cursor: pointer;
    transition: 0.3s;
    
}

button:hover {
    background: #ffc107;
    transform: scale(1.05);
}

.botoes {
    display: flex;
   justify-content: center
 
}

#listar-jogadores {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.card {
  display: flex;
  align-items: center; /* antes estava "warp", agora é center */
  gap: 15px;
  background: rgba(255,255,255,0.15);
  padding: 15px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  width: 320px;
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.card .info {
  flex: 1;
}