 body {
      font-family: Arial, sans-serif;
      background-color: black;
      color: white;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      flex-direction: column;
    }

    .view {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 400px;
      padding: 2rem;
      background: black;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    #kycForm {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        align-content: center;
        
    }


    .hidden {
    display: none !important;
    }

    .view.active {
      display: flex;
    }
    
   
    input {
      padding: 0.75rem;
      color: white;
      margin: 0.5rem 0;
      font-size: 1rem;
      border: 1px solid #555;
      background-color: #333;
      border-radius: 5px;
    }

    button {
      width: 100%;
      padding: 0.75rem;
      margin: 0.5rem 0;
      font-size: 1rem;
      border: 1px solid #ca942f;
      border-radius: 5px;
      background-color: #ca942f;
      color: white;
      cursor: pointer;
      transition: 0.3s ease-in-out;
    }

    button:hover {
      background: linear-gradient(to right, #ca942f, #fac767, #ffdfa3);
      color: black;
    }

    .error {
      color: red;
      margin-top: 0.5rem;
    }

    .score-circle {
      width: 120px;
      height: 120px;
      border: 6px solid #007bff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 1rem 0;
    }

    #progressContainer {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    }
    #progressText {
    pointer-events: none;
    user-select: none;
    }

    @media (max-width: 480px) {
      .view {
        width: 90%;
        padding: 1rem;
      }

       input {width: 80%;}
       button {width: 86%;}
    }
