
        body {
            font-family: "arial";
            margin: 0;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            min-height: 100vh;
            background: #f5f5f5;
            color: #333;
            padding: 20px;
            background-size: cover;
            background-position: center;
        }

        .container {
            width: 100%;
            max-width: 400px;
            position: relative;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 50px;
        }

        .header-img {
            max-width: 150px;
            margin: 20px auto;
            display: block;
        }

        form {
            display: flex;
            flex-direction: column;
            padding: 20px;
        }

        input {
            padding: 10px;
            margin-bottom: 12px;
            border: none;
            border: 1px solid #6a6a6a70;
            border-radius: 13px;
            transition: border-color 0.3s ease-in-out;
            outline: none;
            color: #333;
            font-size: 16px;
             background: transparent;
        }

        input:focus {
            border-color: #ff6600;
        }

        button {
            background-color: #ff6600;
            color: #fff;
            padding: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease-in-out;
            font-size: 16px;
        }

        button:hover {
            background-color: #ff6600;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .input-boxes-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            gap: 1px;
        }

        .input-box {
            width: 37px;
            height: 37px;
            text-align: center;
            font-size: 16px;
        }
        
  @media (max-width: 480px) {
    .input-box {
      width: 17px;
      height: 17px;
      font-size: 13px;
    }
  
    .input-boxes {
      gap: 1px;
      justify-content: center;
    }
  }
  