body{
      font-family: Arial;
      background-color: #f0f2f5;
      display: flex;
      justify-content: center;
      align-items: start;
      gap: 40px;
      padding: 40px;
    }
    .formBox{
      width: 300px;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
    }
    input{
      width: 100%;
      padding: 8px;
      margin: 6px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    button{
      width: 100%;
      padding: 10px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 8px;
    }
    button:hover{
      background: #0056b3;
    }
    .idCard{
      width: 280px;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      text-align: center;
    }
    .idCard img{
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 2px solid #007bff;
      object-fit: cover;
    }
    h2{
      text-align: center;
      margin-bottom: 10px;
    }
    .info{
      text-align: left;
      margin-top: 10px;
    }
    strong{
      color: #333;
    }